Join Nostr
2026-02-09 17:49:23 UTC
in reply to

Third spruce tree on the left on Nostr: A simplified NGINX config would be: server { listen 443 ssl; server_name ...

A simplified NGINX config would be:

server {
listen 443 ssl;
server_name jelly.awadwatt.com;
location / {
proxy_pass http://othercomputer:9800
}
}

all this says is any request for `jelly.awadwatt.com` (via https, port 443) redirect that to othercomputer on port 9800

3/