> Hello,
>
> We would like to use uWSGI in "Emperor mode" with many individually
> developed python/bottle apps mounted at various points on the same
> subdomain. For example:
>
> http://apps.getco.com/my_app01
> http://apps.getco.com/my_app02
> http://apps.getco.com/another_app07
>
> We're using nginx as a front end webserver, and we so far have the
> following relevant portion of the nginx.conf:
>
> http{
> server{
>
>         location / {
>             root   html;
>             include uwsgi_params;
>             try_files $uri @fallback;
>         }
>
>         location @fallback {
>             include uwsgi_params;
>             uwsgi_param SCRIPT_NAME /;
>             uwsgi_pass localhost:9000;
>         }
> }
> }
>
>

Do you want to avoid to add a nginx rule for each app, or it is not a
problem ?

-- 
Roberto De Ioris
http://unbit.it
_______________________________________________
uWSGI mailing list
[email protected]
http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi

Reply via email to