[edit]
How to run a psyced webservice via nginx
this adds a virtualhost for the made up domain home.wl listening on https. all requests are forwarded to the local psyced listening on port 44330.
server {
listen [::]:443;
server_name home.wl;
location / {
proxy_pass https://localhost:44330;
}
}
there are a lot of more settings than can be used to set resources and timeouts. - http://wiki.nginx.org/HttpProxyModule