gradido/nginx/frontend.conf
2025-05-07 16:13:48 +02:00

12 lines
187 B
Plaintext

server {
server_name _;
listen 3000;
listen [::]:3000;
location / {
root /app/;
index index.html;
try_files $uri $uri/ /index.html = 404;
}
}