Questions tagged [meteor]

Meteor is an open-source, perl based HTTP server

Meteor is designed to offer continuous data streaming (via Javascript) to avoid pageloads. Essentially, it is two servers in one: One that handles page loads, and another for page events.

36 questions
1
vote
1 answer

route port 3000 to apache2 alias

I have a meteor application running on port 3000. I can successfully connect to the program with www.myurl.com:3000, but would rather connect to it via www.myurl.com/myappname. I started with the instructions on this web site:…
user223470
  • 11
  • 1
  • 2
1
vote
1 answer

nginx proxy folder to url

I have some sites I want to redirect with nginx: domain.com:1180 -> test.domain.com (static site) domain.com:1280 -> test.domain.com/promo (meteor.js website) On domain.com I have an nginx server with the following site enabled: server { listen…
Mascarpone
  • 872
  • 3
  • 9
  • 27
1
vote
1 answer

Proper upstart config for meteor?

I'm hoping to find out how to tell upstart that meteor will fork more than twice? I followed their instructions at http://upstart.ubuntu.com/cookbook/#how-to-establish-fork-count to count the forks and it reports 21 times. This is kind of a non…
Mike Graf
  • 397
  • 1
  • 3
  • 14
1
vote
2 answers

Deploying N amount of meteor apps on a single server

I'm trying to (sort of) mimic the server setup of the official Meteor deploy infrastructure (the *.meteor.com subdomain deployments). If it's only a handful of known meteor apps, I can just run the bundled apps on different ports and use nginx…
Dave
  • 113
  • 3
1
vote
2 answers

Serving Meteor on main domain and Apache on subdomain independently

I'm running a Meteor server on my Ubuntu server. But problems arise when I try to have Apache serving a subdomain on the same server. main.domain.com -> Meteor sub.domain.com -> Apache Meteor is running on port 80. I have previously tried to have…
kinologik
  • 23
  • 1
  • 1
  • 5
1
vote
1 answer

Meteor: How do I run the documentation server and my app at the same time, if both run their own mongodb instance on the same port?

I'm trying to run the meteor documentation server and my app at the same time, but I can only run one at a time, out of the box. They both run their own instance of mongodb and so the ports colide...
Victor S
  • 243
  • 2
  • 7
1
vote
0 answers

Adding Mongo WiredTiger node to MMAPv1 replica set leads to "No keys found for HMAC"

I have a 3-node Replica Set (primary + 2 secondaries). They are all running Mongo 4.0.18 using the MMAPv1 engine. I am trying to switch the replica set over to use WiredTiger. I read through the MongoDB tutorial on how to Change Replica Set to…
Noach Magedman
  • 206
  • 1
  • 4
0
votes
1 answer

Meteor: Docker container error after SSL setup in mup

After I recieved an error of: *3940 peer closed connection in SSL handshake while SSL handshaking to upstream. I figured it was because I setup nginx for ssl(letsencrypt) but didn't have it set in the mup.js folder. The standard app ran on the IP…
user79864
  • 1
  • 1
0
votes
0 answers

Mystery display -- Missing portions of server feedback in Windows PowerShell

What's up with this? I'm trying to use Windows10 PowerShell to interact with a Meteor application. I'm having a heck of a time displaying feedback from the server thru the PowerShell. Here's a typical screen shot: At first glance it looks…
zipzit
  • 121
  • 5
0
votes
1 answer

Send SSL requests to localhost:port using apache

I'm running a meteor application, due to restrictions I must use Apache as the webserver. There are also other existing websites hosted on the same domain under different locations e.g. https://example.com/phpsite1, https://example.com/phpsite2. The…
0
votes
1 answer

Nginx: Proxy redirect to TEST env

I am trying to write an nginx.conf which will redirect to port 3001 where meteor.js TEST env is of my EC2 instance. If user types "xxx.xxxx.com/test". Redirection isn't working and it searches pages from my meteor.js app. Nginx and meteor.js app are…
0
votes
0 answers

Meteor JS issues on failover (Delay in reconnection)

Our meteor deployment contains two meteor nodes, behind a network load balancer (Google cloud NLB which simply passes on requests to a target pool of 2 Ubuntu 14.04 meteor instances). Each node has a Nginx installed terminating SSL and proxy passing…
Danny Z
  • 1
  • 1
0
votes
1 answer

run Apache and node.js in subfolder

I would like to run a meteor.js app in a subfolder (/home/www/public/v1) of a domain (/home/www/public) served by an Apache (2.4.7) server. I have set up a virtualhost which listens to port 80, and proxies locations starting with "v1" to the nodejs…
pixeline
  • 658
  • 3
  • 12
  • 29
0
votes
1 answer

How to debug where an SSL connection is getting lost?

The big picture is I'm trying to setup an SSL connection for a subdomain, if I go to currently if I go to the non-secure url the website works, but if requeset https://sub.domain.com there is no response from the server: This webpage is not…
Shwaydogg
  • 131
  • 1
  • 6
0
votes
1 answer

why can't I view my app on my aws ec2 instance? deployed with meteor up

I'm trying to get my meteor app up onto an aws ec2 instance using meteor up. This worked for me previously, following this tutorial. I've successfully run mup setup and mup deploy, but when I try to access the app through the Public DNS, I get…