LeBlaireau
LeBlaireau

Reputation: 17467

Meteor & mup - on linux server

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

Answers (1)

CaptSaltyJack
CaptSaltyJack

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

Related Questions