wip changes

This commit is contained in:
vabene1111
2020-03-24 12:57:45 +01:00
parent e3b71d47f4
commit c67342df26
9 changed files with 81 additions and 8 deletions

View File

@ -0,0 +1,20 @@
server {
listen 80;
server_name localhost;
client_max_body_size 16M;
# serve static files
location /static/ {
alias /static/;
}
# serve media files
location /media/ {
alias /media/;
}
# pass requests for dynamic content to gunicorn
location / {
proxy_set_header Host $host;
proxy_pass http://web_recipes:8080;
}
}