Files
nostr-watch/nginx/conf.d/default.conf
2022-12-17 23:04:58 +01:00

15 lines
229 B
Plaintext

server {
listen 80;
root /app;
error_page 404 =200 /index.html;
location / {
index index.html;
# try_files $uri $uri/ /index.html;
}
location ~ /?(.*)$ {
index index.html;
}
}