1
0
mirror of https://github.com/schollz/cowyo.git synced 2023-08-10 21:13:00 +03:00

Update nginx to allow serving static

This commit is contained in:
Zack Scholl 2016-02-08 10:31:33 -05:00
parent 5b093970b0
commit 02e7e1a145

View File

@ -4,9 +4,26 @@ server {
access_log /etc/nginx/logs/access-cowyo.log;
error_log /etc/nginx/logs/error-cowyo.log info;
root /home/phi/Documents/cowyo;
root /home/mu/cowyo;
server_name cowyo.duckdns.org cowyo.com;
# 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";
}
# CSS and Javascript
location ~* \.(?:css|js)$ {
expires 1y;
access_log off;
add_header Cache-Control "public";
}
location /static {
try_files $uri $uri/ =404;
}
location / {
proxy_set_header X-Real-IP $remote_addr;
@ -20,6 +37,5 @@ server {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}