Permalink
Switch branches/tags
Nothing to show
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time. Cannot retrieve contributors at this time
19 lines (12 sloc) 520 Bytes
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