We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f34d3b4 commit c4d26adCopy full SHA for c4d26ad
2 files changed
Procfile
@@ -1,2 +1,2 @@
1
release: python manage.py migrate --no-input
2
-web: gunicorn apiconfig.wsgi.application --log-file -
+web: uwsgi wsgi/uwsgi.ini
wsgi/uwsgi.ini
@@ -1,10 +1,7 @@
[uwsgi]
-die-on-term = true
3
http-socket = :$(PORT)
4
-log-format = UWSGI uwsgi "%(method) %(uri) %(proto)" %(status) %(size) %(msecs)ms [PID:%(pid):Worker-%(wid)] [RSS:%(rssM)MB]
5
master = true
6
-max-requests = 100
7
-memory-report = true
8
-module = apiconfig.wsgi:application
9
processes = 4
10
-static-map = /static=/app/static
+die-on-term = true
+module = apiconfig.wsgi:application
+memory-report = true
0 commit comments