mirror of
https://github.com/schollz/cowyo.git
synced 2023-08-10 21:13:00 +03:00
219237ecdd
Former-commit-id: 1077d27195a28afb5034c0a4557122e778a540ba [formerly 84cbacb1929f197de80a531c010c3e5aaab8b544] [formerly 9c816e3a474f26ef95fe0d83802969decd4e26e0 [formerly 8041ea72783d8fcf05e9c40beee77a43a1c25744 [formerly437078103d
]]] Former-commit-id: 8218bae09d9814448f1462253f410de1b8564a4f [formerly 5ec984d30df6d06c68f5bb9797703f38f8c7da7f] Former-commit-id: bb934dff6ae0c095b4691b4c5693257c3a72bc63 Former-commit-id:7c760d050b
42 lines
994 B
Nginx Configuration File
Executable File
42 lines
994 B
Nginx Configuration File
Executable File
server {
|
|
# SERVER BLOCK FOR awwkoala
|
|
listen 80; ## listen for ipv4; this line is default and implied
|
|
|
|
access_log /etc/nginx/logs/access-awwkoala.log;
|
|
error_log /etc/nginx/logs/error-awwkoala.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";
|
|
}
|
|
}
|