Skip to content

Latest commit

 

History

History
53 lines (40 loc) · 1.39 KB

blog.lylinux.org

File metadata and controls

53 lines (40 loc) · 1.39 KB

upstream hello_app_server { server unix:/var/www/DjangoBlog/run/gunicorn.sock fail_timeout=0; }

server {

server_name blog.lylinux.org; root var/www/DjangoBlog;

listen 80;

keepalive_timeout 70; access_log off;

location static { expires max; alias var/www/DjangoBlog/collectedstatic; }

location / {

proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

proxy_set_header Host $http_host;

proxy_redirect off;

if (!-f $request_filename) { proxy_pass http://hello_app_server; break; } }

}