diff --git a/caretech/map/docker-compose.yml b/caretech/map/docker-compose.yml index 56c8187c3e22271276320ecf646482e609dc27f3..75b2c70148949136ea205554f251dfd6069e8acb 100644 --- a/caretech/map/docker-compose.yml +++ b/caretech/map/docker-compose.yml @@ -24,7 +24,7 @@ services: REDIS_URL: redis://redis:6379/0 SITE_URL: https://carte.caretech.picasoft.net # Do not allow non-authenticated users to create maps - LEAFLET_STORAGE_ALLOW_ANONYMOUS: False + LEAFLET_STORAGE_ALLOW_ANONYMOUS: "False" PORT: 8000 volumes: - app_uploads:/srv/umap/uploads diff --git a/caretech/map/entrypoint.sh b/caretech/map/entrypoint.sh index 01fa0fc0e815e29e34338d3f0792703f88c383ca..bd98b3eb0ab6639a3faebbfd1ec8fa386538a3d0 100644 --- a/caretech/map/entrypoint.sh +++ b/caretech/map/entrypoint.sh @@ -26,5 +26,5 @@ umap collectstatic --noinput echo "Compress static files..." umap compress -echo "Launch uMap..." +echo "Launch uMap via uWSGI..." exec $@ diff --git a/caretech/map/settings.py b/caretech/map/settings.py index 2b3f0369156140b71a20342e223aef75d2fd24e3..d2ec843e03c6d9bd9bfcf211739637e155c0b660 100644 --- a/caretech/map/settings.py +++ b/caretech/map/settings.py @@ -110,7 +110,7 @@ LOGGING = { }, 'handlers': { 'console': { - 'level': 'DEBUG', + 'level': 'INFO', 'class': 'logging.StreamHandler', 'stream': sys.stdout, 'formatter': 'verbose' @@ -119,7 +119,7 @@ LOGGING = { 'loggers': { 'django': { 'handlers': ['console'], - 'level': 'DEBUG', + 'level': 'INFO', 'propagate': True, }, },