proxy_pass
Warning: Undefined variable $html in /usr/share/nginx/html/lib/plugins/tabinclude/helper.php on line 240
Proxy Pass
- Ports
Simply redirect a domain to a port. For example, if you wanted to visit: lukeshirnia.co.uk:5050 you can use a sub domain with proxy pass do this on local host.
server {
listen 80;
server_name example.lukeshirnia.co.uk www.example.lukeshirnia.co.uk;
location / {
proxy_pass http://localhost:5050;
}
}
proxy_pass.txt · Last modified: 2024/05/23 07:26 by 127.0.0.1
