We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7e99899 + f54f183 commit c30d958Copy full SHA for c30d958
bin/docker_start.sh
@@ -23,7 +23,6 @@ python src/manage.py migrate
23
# --- Basic Application Configuration
24
export UWSGI_MODULE="open_inwoner.wsgi"
25
export UWSGI_CHDIR="src"
26
-export UWSGI_STATIC_MAP="/static=/app/static /media=/app/media"
27
28
# --- Process Management
29
# Allow for better worker coordination and graceful shutdowns for unresponsive workers
@@ -60,4 +59,8 @@ export UWSGI_BUFFER_SIZE=${UWSGI_BUFFER_SIZE:-65535}
60
59
61
# Start Server
62
>&2 echo "Starting server"
63
-exec uwsgi --show-config --strict
+exec uwsgi \
+ --show-config \
64
+ --strict \
65
+ --static-map /static=/app/static \
66
+ --static-map /media=/app/media
0 commit comments