I have a server that is running at 127.0.0.1:8323
This port is not reachable from outside.
I want to provide this ip address as https://example.com/website/index.php over the port 80
How can i do this using nginx?
I have tried using proxy_pass in a server, like :
server { listen 80; location website/ { proxy_pass https://127.0.0.1:8323; } } But it returns 404