maksit-certs-ui/src/MaksIT.WebUI/nginx.conf
2025-11-19 22:19:54 +01:00

11 lines
139 B
Nginx Configuration File

server {
listen 5173;
server_name _;
root /app/dist;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}