docs/nginx.conf

45 lines
1.0 KiB
Nginx Configuration File

load_module modules/ngx_http_brotli_static_module.so;
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log notice;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
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 /dev/stdout main;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
listen [::]:80;
server_name localhost;
add_header Content-Security-Policy "default-src 'self'";
location / {
root /usr/share/nginx/html;
index index.html;
gzip_static on;
brotli_static on;
error_page 404 /404.html;
add_header Cache-Control "public, max-age=604800";
}
}
}