I have some Mojolicious-based apps which happily run under Apache2 with mod_cgi and mod_fastcgi.
The urls are for example:
http://example.org/oneapp/path/info?foo=bar
http://example.org/oneapp?foo=bar
http://example.org/secondapp/path/info?foo=bar
http://example.org/thirdapp/path/info?baz=heh
#etc...
I had relative success configuring the apps as subdomains using proxy_pass but I would like to keep the old urls(just switch from apache2 to nginx). I would like to keep the same urls but run the apps using nginx. What should my configuration look like and how should I run the apps.
Thanks in advance!