Report this

What is the reason for this report?

Meteor application run from www.mydomain.com/app address

Posted on May 12, 2015

I would like to run my app from www.mydomain.com/app address. I have absolutely no problem in setting up Nginx and Meteor to serve the app from www.mydomain.com

Moreover, I have managed to update the routing directives within my app to include the path prefix /app. I am aware, one should be able to use Meteor environmental variable ROOT_URL to assign a custom URI from which the app is about to be available.

The css and js files compiled and minified by the Meteor have always correct path. The problem however, is linking to the resources available in the Public folder of the app.

I was wondering if anybody in the community succeeded in creating a set of Nginx rewrite rules that could handle the issue?



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Inside of your Nginx server block, you can create a new location directive that points to your public/ folder.

    location /app {
        root /path/to/app/public;
    }

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.