/
vdele
/
app
Обзор
Документация
Войти
/
vdele
/
app
Код
Вики
Пакеты
0
Релизы
1
Аналитика
dev
nginx.conf
25 строк
535 B
Vasilii Polshakov
Initial commit
25 мар 2025, 01:21
25 мар 2025, 01:21
6a154a4
Код
Авторство
О чём код?
server { listen 80; server_name localhost; #error_log /var/log/nginx/error.log; #access_log /var/log/nginx/access.log; location / { root /usr/share/nginx/html; index index.html; location ~* \.(css|js)$ { add_header Cache-Control "max-age=0, no-cache, no-store, must-revalidate, proxy-revalidate"; add_header Pragma "no-cache"; } try_files $uri $uri/ /index.html; } error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; } }