Reputation: 17467
I have successfully installed a meteor app with MUP on my linux server my app files appear in
/opt/myapp
when I run myapp start I get
start: Job is already running: myapp
In my setting files I have
"ROOT_URL": "http://xx.xxx.xxx.xx",
Wat url should the app resolve to? I have also tried
"ROOT_URL": "http://xx.xx.xxx.xxx/myapp",
Upvotes: 0
Views: 152
Reputation: 16055
The correct way is to use mup to stop/start, don't log into your server and use upstart manually. ROOT_URL
should be http://yourapp.com
, do not use subdirectories as it'll confuse your router.
Upvotes: 0