Files
edr-platform/infrastructure/nginx/spa.conf
2026-05-28 12:52:56 +03:00

14 lines
280 B
Plaintext

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
gzip on;
gzip_types text/plain text/css application/json application/javascript text/xml application/xml;
location / {
try_files $uri $uri/ /index.html;
}
}