30 lines
721 B
Plaintext
30 lines
721 B
Plaintext
server {
|
|
listen 80 default_server;
|
|
server_name /usr/share/nginx/html;
|
|
|
|
root /usr/share/nginx/html;
|
|
index index.html index.htm;
|
|
|
|
location ~* \.(?:manifest|appcache|html?|xml|json)$ {
|
|
expires -1;
|
|
# access_log logs/static.log; # I don't usually include a static log
|
|
}
|
|
|
|
location ~* \.(?:css|js|json)$ {
|
|
try_files $uri =404;
|
|
expires 1y;
|
|
access_log off;
|
|
add_header Cache-Control "public";
|
|
}
|
|
|
|
# Any route containing a file extension (e.g. /devicesfile.js)
|
|
location ~ ^.+\..+$ {
|
|
try_files $uri =404;
|
|
}
|
|
|
|
# Any route that doesn't have a file extension (e.g. /devices)
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
}
|