Permalink
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
Cannot retrieve contributors at this time.
Cannot retrieve contributors at this time
| description "uWSGI starter with New Relic support" | |
| start on runlevel [2345] | |
| stop on runlevel [!2345] | |
| respawn | |
| # utilize new relic | |
| # assumes servers global uwsgi | |
| #if using virtualenv then specify path to uwsgi virtualenv install | |
| # more info here: https://newrelic.com/docs/python/python-agent-and-uwsgi | |
| NEW_RELIC_CONFIG_FILE=/path/to/newrelic.ini | |
| exec newrelic-admin run-program /usr/local/bin/uwsgi --ini /path/to/uwsgi.ini | |
| # non newrelic upstart | |
| #exec /usr/local/bin/uwsgi --ini /etc/uwsgi/apps-enabled/myapp.ini | |