21 lines
545 B
Nginx Configuration File
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;
|
|
}
|
|
} |