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/