TandoorRecipes/nginx/conf.d/Recipes.conf
2018-11-07 13:31:26 +01:00

17 lines
325 B
Plaintext

server {
listen 80;
server_name localhost;
# 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;
}
}