Files
appServerPortalUI/nginx.conf
2026-02-02 18:38:32 +01:00

11 lines
153 B
Nginx Configuration File
Executable File

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri /index.html;
}
}