mirror of
https://github.com/aljazceru/nostr-watch.git
synced 2025-12-17 05:24:19 +01:00
15 lines
229 B
Plaintext
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;
|
|
}
|
|
}
|