blog.lylinux.org 1.4 KB

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

server {

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

listen 80;

keepalive_timeout 70; access_log off;

location static { expires max; alias var/www/Website/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; } }

}