2016-02-06 16:52:11 +03:00
|
|
|
server {
|
|
|
|
# SERVER BLOCK FOR cowyo
|
|
|
|
listen 80; ## listen for ipv4; this line is default and implied
|
|
|
|
|
|
|
|
access_log /etc/nginx/logs/access-cowyo.log;
|
|
|
|
error_log /etc/nginx/logs/error-cowyo.log info;
|
2016-02-08 19:29:42 +03:00
|
|
|
root CUR_DIR;
|
2016-02-08 20:15:29 +03:00
|
|
|
server_name ADDRESS;
|
2016-02-06 16:52:11 +03:00
|
|
|
|
2016-02-08 18:31:33 +03:00
|
|
|
# Media: images, icons, video, audio, HTC
|
|
|
|
location ~* \.(?:jpg|jpeg|gif|png|ico|cur|gz|svg|svgz|mp4|ogg|ogv|webm|htc)$ {
|
|
|
|
expires 1M;
|
|
|
|
access_log off;
|
|
|
|
add_header Cache-Control "public";
|
|
|
|
}
|
2016-02-06 16:52:11 +03:00
|
|
|
|
2016-02-08 18:31:33 +03:00
|
|
|
# CSS and Javascript
|
|
|
|
location ~* \.(?:css|js)$ {
|
|
|
|
expires 1y;
|
|
|
|
access_log off;
|
|
|
|
add_header Cache-Control "public";
|
|
|
|
}
|
2016-02-06 16:52:11 +03:00
|
|
|
|
2016-02-08 20:46:25 +03:00
|
|
|
location ^~ /static {
|
2016-02-08 18:31:33 +03:00
|
|
|
try_files $uri $uri/ =404;
|
|
|
|
}
|
|
|
|
|
2016-02-08 20:46:25 +03:00
|
|
|
location ~ ^/ {
|
2016-02-08 18:31:33 +03:00
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
proxy_set_header Host $http_host;
|
|
|
|
proxy_set_header X-NginX-Proxy true;
|
|
|
|
|
2016-02-08 19:29:42 +03:00
|
|
|
proxy_pass http://127.0.0.1:PORT;
|
2016-02-08 18:31:33 +03:00
|
|
|
proxy_redirect off;
|
|
|
|
|
|
|
|
proxy_http_version 1.1;
|
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
proxy_set_header Connection "upgrade";
|
|
|
|
}
|
2016-02-06 16:52:11 +03:00
|
|
|
}
|