frontend/nginx.conf
2025-10-01 11:04:11 +03:00

17 lines
328 B
Nginx Configuration File

events {}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
server {
listen 9080;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
}
}