> the one that works with 0.9.8.5 > > uwsgi --protocol http --socket 127.0.0.1:#### --pythonpath > /home/myusername/web2py --module wsgihandler -d > /home/myusername/tmp/uwsgi.log -t 20 --async 24 --ugreen --limit-as 64 -r > --no-orphans -M -p 1 --touch-reload /home/myusername/tmp/uwsgireload.txt > --reload-on-rss 50 > > the one that works with 0.9.9.1 but exits on touch (to reload) and > dispatches 2 child processes instead of one > > uwsgi --http 127.0.0.1:#### --pythonpath /home/myusername/web2py --module > wsgihandler -d /home/myusername/tmp/uwsgi.log -t 20 --async 12 --ugreen > --limit-as 36 -r --no-orphans -M -p 1 --touch-reload > /home/myusername/tmp/uwsgireload.txt --reload-on-rss 50 >
Oh ok, you are pratically using --http <addr> instead of --http-socket <addr> The first one spawn a dedicated http server, the second one is a shortcut for --protocol http --socket <addr> -- Roberto De Ioris http://unbit.it