Browse Source

change media url

ilya_shyian 1 year ago
parent
commit
9b80074443
2 changed files with 2 additions and 2 deletions
  1. 1 1
      config/gunicorn/dev.py
  2. 1 1
      config/gunicorn/prod.py

+ 1 - 1
config/gunicorn/dev.py

@@ -1,4 +1,4 @@
-wsgi_app = "diploma.wsgi:application"
+wsgi_app = "store_back.wsgi:application"
 loglevel = "debug"
 workers = 1
 bind = "0.0.0.0:8000"

+ 1 - 1
config/gunicorn/prod.py

@@ -2,7 +2,7 @@
 import multiprocessing
 
 # Django WSGI application path in pattern MODULE_NAME:VARIABLE_NAME
-wsgi_app = "diploma.wsgi:application"
+wsgi_app = "store_back.wsgi:application"
 # The number of worker processes for handling requests
 workers = multiprocessing.cpu_count() * 2 + 1
 # The socket to bind