frontend/nginx.conf

18 lines
328 B
Nginx Configuration File
Raw Permalink Normal View History

2025-10-01 11:04:11 +03:00
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;
}
}
}