feat(nginx): update custom nginx config

This commit is contained in:
Jewgeni Lewash 2024-03-02 20:20:13 +01:00
parent 37faab1412
commit bb18a47579

View File

@ -22,6 +22,12 @@ http {
keepalive_timeout 65; keepalive_timeout 65;
gzip on;
gzip_vary on;
gzip_proxied any;
gzip_comp_level 6;
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
server { server {
listen 80; listen 80;
listen [::]:80; listen [::]:80;
@ -32,9 +38,21 @@ http {
index index.html index.htm; index index.html index.htm;
} }
try_files $uri $uri/ /index.html
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg)$ {
expires 30d;
add_header Cache-Control "public, no-transform";
}
error_page 500 502 503 504 /50x.html; error_page 500 502 503 504 /50x.html;
location = /50x.html { location = /50x.html {
root /usr/share/nginx/html; root /usr/share/nginx/html;
} }
add_header X-Frame-Options "SAMEORIGIN";
add_header X-Content-Type-Options "nosniff";
add_header X-XSS-Protection "1; mode=block";
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always;
} }
} }