1
0
mirror of https://github.com/schollz/cowyo.git synced 2023-08-10 21:13:00 +03:00
cowyo/install/cowyo.nginx
Zack Scholl 992e0fe776 Added makefile
Former-commit-id: fcedfb6154c9bc2a80a90e027bbc69f02d755e2c [formerly 5adb4a7a303116dc002814c408a798dc86512a90] [formerly 866edb50ab438dd4123edf0761ff8445b5a84dc7 [formerly a4680105f8]]
Former-commit-id: 58a32e4ecb0d2131b51074b01acbbd4318a0c347 [formerly da121f68ff68d214c7bc98d5d29fc6c40ca3c6e9]
Former-commit-id: 241fce62599a0f0d0fbf3f2ad036d481dd1897be
2016-02-08 12:15:29 -05:00

42 lines
979 B
Nginx Configuration File

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;
root CUR_DIR;
server_name ADDRESS;
# 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;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_pass http://127.0.0.1:PORT;
proxy_redirect off;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}