add cache control headers

This commit is contained in:
Waylon Walker 2023-11-13 12:37:35 -06:00
parent 7a443cd125
commit 197b0b677f
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4

40
home/config/nginx.conf Normal file
View file

@ -0,0 +1,40 @@
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log notice;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
location / {
add_header Cache-Control "max-age=604800";
add_header stale-while-revalidate 900;
add_header stale-if-error 2592000;
root /usr/share/nginx/html;
index index.html index.htm;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
#gzip on;
include /etc/nginx/conf.d/*.conf;
}