I would like to run multiple rails apps with just using different location blocks. Different unicorn workers are started and configured, they are working just fine.
Every app is under the same folder: /var/www/<app>
, so I configured nginx like this:
root /var/www;
location /app1/ {
root /var/www/app1/public;
try_files $uri/index.html $uri.html $uri @app1;
}
location /app2/ {
root /var/www/app2/public;
try_files $uri/index.html $uri.html $uri @app2;
}
My issue is that w/ this ruleset a request (like mydomain/app1/check) comes into my app1 like this: Started GET "/app1/check" for ...
I would like to have just Started GET "/check" for ...
What should i change on my config?