From 197b0b677f3995202971a6faed051275a0989777 Mon Sep 17 00:00:00 2001 From: "Waylon S. Walker" Date: Mon, 13 Nov 2023 12:37:35 -0600 Subject: [PATCH] add cache control headers --- home/config/nginx.conf | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 home/config/nginx.conf diff --git a/home/config/nginx.conf b/home/config/nginx.conf new file mode 100644 index 0000000..ca4b287 --- /dev/null +++ b/home/config/nginx.conf @@ -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; +}