diff --git a/services/swh-deposit/entrypoint.sh b/services/swh-deposit/entrypoint.sh --- a/services/swh-deposit/entrypoint.sh +++ b/services/swh-deposit/entrypoint.sh @@ -31,5 +31,5 @@ --workers 2 \ --log-level DEBUG \ --timeout 3600 \ - swh.deposit.wsgi + 'django.core.wsgi.get_wsgi_application()' fi diff --git a/services/swh-indexer-storage/entrypoint.sh b/services/swh-indexer-storage/entrypoint.sh --- a/services/swh-indexer-storage/entrypoint.sh +++ b/services/swh-indexer-storage/entrypoint.sh @@ -27,6 +27,6 @@ --workers 2 \ --log-level DEBUG \ --timeout 3600 \ - swh.indexer.storage.api.wsgi + 'swh.indexer.storage.api.server:make_app_from_configfile()' ;; esac diff --git a/services/swh-objstorage/entrypoint.sh b/services/swh-objstorage/entrypoint.sh --- a/services/swh-objstorage/entrypoint.sh +++ b/services/swh-objstorage/entrypoint.sh @@ -19,6 +19,6 @@ --workers 2 \ --reload \ --timeout 3600 \ - swh.objstorage.api.wsgi + 'swh.objstorage.api.server:make_app_from_configfile()' fi diff --git a/services/swh-storage/entrypoint.sh b/services/swh-storage/entrypoint.sh --- a/services/swh-storage/entrypoint.sh +++ b/services/swh-storage/entrypoint.sh @@ -40,6 +40,6 @@ --workers 2 \ --log-level DEBUG \ --timeout 3600 \ - swh.storage.api.wsgi + 'swh.storage.api.server:make_app_from_configfile()' ;; esac diff --git a/services/swh-web/entrypoint.sh b/services/swh-web/entrypoint.sh --- a/services/swh-web/entrypoint.sh +++ b/services/swh-web/entrypoint.sh @@ -34,5 +34,5 @@ --threads 2 \ --workers 2 \ --timeout 3600 \ - swh.web.wsgi + 'django.core.wsgi.get_wsgi_application()' esac