Victor.dMdB
Victor.dMdB

Reputation: 1019

Meteor Mupx with Nginx reverse proxy

I'm setting up multiple virtual servers using docker and managing the routing with an nginx reverse proxy (https://hub.docker.com/r/jwilder/nginx-proxy/).

I already have a couple other dockers (for mysql and wp)

I would like to use mupx to deploy thanks to it's ease of use (https://github.com/arunoda/meteor-up/tree/mupx#), though it is require to provide a port and defaults to 80 (which conflicts with nginx).

Here are the relevant elements from the mup.json

"servers": [
    {
      "host": "111.111.111.111",
      "username": "root",
      "pem": "path/to/key",
        "env":{
            "VIRTUAL_HOST":"subdomain.domain.com"            
        }    
    }
  ],
...
  "env": {
    "ROOT_URL": "http://subdomain.domain.com"
  }

Anyone have any experience with this?

Upvotes: 2

Views: 692

Answers (1)

user5084201
user5084201

Reputation:

I think you can change the port of the app to avoid the conflict

  "env": {
    "PORT": 80, // change to anything?

Upvotes: 2

Related Questions