mirror of
https://github.com/aljazceru/nostr-watch.git
synced 2025-12-17 05:24:19 +01:00
13 lines
159 B
Plaintext
13 lines
159 B
Plaintext
server {
|
|
listen 80;
|
|
root /app;
|
|
|
|
location /relays/ {
|
|
rewrite ^ relays.json break;
|
|
}
|
|
|
|
location / {
|
|
index index.html;
|
|
}
|
|
}
|