Skip to content

Instantly share code, notes, and snippets.

@ryankanno
Created February 2, 2012 06:04
Show Gist options
  • Save ryankanno/1721819 to your computer and use it in GitHub Desktop.
Save ryankanno/1721819 to your computer and use it in GitHub Desktop.
uwsgi.xml configuration file for Ubuntu 11.10 init.d
<uwsgi>
<socket>127.0.0.1:12345</socket>
<pythonpath>/home/apps/allbus/current</pythonpath>
<module>wsgi</module>
<plugins>python</plugins>
<processes>1</processes>
<pidfile>/var/run/uwsgi/%n/pid</pidfile>
<daemonize/>
<uid>33</uid>
<gid>33</gid>
<enable-threads/>
<master/>
<harakiri>120</harakiri>
<max-requests>5000</max-requests>
</uwsgi>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment