You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have two IP address bound to my server. One IP is for Apache and one is for Meteor. Both are running on port 80.
Apache runs on 000.000.000.000:80
Meteor runs on 000.000.000.001:80
When apache is stopped, deploying my meteor app goes fine. However when Apache is running I get a deployment error stating: Failed to connect to localhost port 80: Connection refused
I have bound apache to its IP address by setting the port.conf to: Listen 000.000.000.000:80
Also, all my virtual hosts are bound by: <VirtualHost 000.000.000.000:80>
Meteor is bound to its IP address by setting the environment variable in mup.json: "BIND_IP": "000.000.000.001"
It seems that the deployment process tries to connect to localhost for verification but can't because apache is active on localhost port 80. I'm not sure what's going on since I specifically bound apache to its own IP address. Do you know what I'm doing wrong?
The text was updated successfully, but these errors were encountered:
Im not too clear on your setup, but thought it worth mentioning for your consideration. If you're using mupx 'docker run' has a -p flag for associating ports and IPs (multiple entries are allowed). It makes iptable enties I believe.
Maybe you could change that in the template start.sh?
Hello,
I have two IP address bound to my server. One IP is for Apache and one is for Meteor. Both are running on port 80.
When apache is stopped, deploying my meteor app goes fine. However when Apache is running I get a deployment error stating:
Failed to connect to localhost port 80: Connection refused
I have bound apache to its IP address by setting the port.conf to:
Listen 000.000.000.000:80
Also, all my virtual hosts are bound by:
<VirtualHost 000.000.000.000:80>
Meteor is bound to its IP address by setting the environment variable in mup.json:
"BIND_IP": "000.000.000.001"
It seems that the deployment process tries to connect to localhost for verification but can't because apache is active on localhost port 80. I'm not sure what's going on since I specifically bound apache to its own IP address. Do you know what I'm doing wrong?
The text was updated successfully, but these errors were encountered: