anthil_web/nginx.conf
2024-10-31 17:18:23 +07:00

21 lines
545 B
Nginx Configuration File

server {
listen 80;
server_name localhost:3000;
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html;
}
# Кэширование статических файлов
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|webp)$ {
expires 30d;
add_header Cache-Control "public, no-transform";
}
# Запрещаем доступ к .git и другим служебным директориям
location ~ /\. {
deny all;
}
}