This commit is contained in:
Vague Rabbit 2021-02-05 12:39:20 -08:00
parent a1960b5b56
commit 9de27a03a0
2 changed files with 2 additions and 1 deletions

View file

@ -462,6 +462,7 @@ wait
#sudo -u $UN cp $HD/django/saleor/asgi.py $HD/saleor/saleor/ #sudo -u $UN cp $HD/django/saleor/asgi.py $HD/saleor/saleor/
#sudo -u $UN cp $HD/django/saleor/wsgi.py $HD/saleor/saleor/ #sudo -u $UN cp $HD/django/saleor/wsgi.py $HD/saleor/saleor/
sudo -u $UN cp $HD/saleor/saleor/wsgi/__init__.py $HD/saleor/saleor/wsgi.py sudo -u $UN cp $HD/saleor/saleor/wsgi/__init__.py $HD/saleor/saleor/wsgi.py
sudo -u $UN mkdir $HD/run
######################################################################################### #########################################################################################

View file

@ -1,6 +1,6 @@
# the upstream component nginx needs to connect to # the upstream component nginx needs to connect to
upstream django { upstream django {
server unix://{hd}/saleor/saleor.sock; server unix://{hd}/run/saleor.sock;
} }
# configuration of the server # configuration of the server