You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
472 B
9 lines
472 B
#!/bin/sh |
|
# Runtime config for the SPA. NIP-66 monitor runs in a separate cron container; nsec is never sent to the client. |
|
# Optional: NIP66_MONITOR_NPUB (npub of the monitor) can be exposed so the relay info page shows who runs the monitor. |
|
if [ -n "$NIP66_MONITOR_NPUB" ]; then |
|
jq -n --arg npub "$NIP66_MONITOR_NPUB" '{NIP66_MONITOR_NPUB: $npub}' > /usr/share/nginx/html/config.json |
|
else |
|
echo '{}' > /usr/share/nginx/html/config.json |
|
fi |
|
exec nginx -g "daemon off;"
|
|
|