Il 11/05/2013 17:33, Roberto De Ioris ha scritto:
> 
> http://uwsgi-docs.readthedocs.org/en/latest/Changelog-1.9.10.html

Mounting multiple apps using the mount option doesn't work in this
version, while all good with the LTS 1.4.9.

A simple MWE:

[uwsgi]
http = :9000
master = true

mount = /a=A:app1
mount = /b=B:app2

# A.py
def app1(env, start_response):
        start_response('200 OK', [('Content-Type','text/plain')])
        return "Hello World N1"

# B.py
def app2(env, start_response):
        start_response('200 OK', [('Content-Type','text/plain')])
        return "Hello World N2"


What I'm missing?

V.

-- 
Valerio De Carolis - http://www.decabyte.it

"To invent an airplane is nothing. To build an airplane is something.
But to fly ... is everything. - Ferdinand Ferber"

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

Reply via email to