This is an old revision of the document!


Nginx


Reverse Proxy

Useful for services that run on abnormal ports, but you want to have clean urls to access them

reverse_proxy
server {
    server_name media.kalenpw.com;
    location / {
        proxy_pass http://127.0.0.1:8096
    }
}