Files
nodarium/app/docker/app.conf
2026-02-02 16:22:14 +01:00

11 lines
150 B
Plaintext

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