Nginx as a reverse proxy failed

Hi guys,

I did my task properly but it failed ?

I did move the index.html from /home folder to stbkp01 server. Why did it fail ? I got the end result.

hello @faisalbasha1982,

you have to define the poxy pass attribute in the nginx file, see below example.
The proxy server redirects all incomming connections on port 80 to the Webfsd server, listening on port 8000. Edit the port value depending on the applications specific port.

        location / {
                    proxy_pass http://127.0.0.1:8000;

Thanks
Rahul

refer below link