Nginx as Reverse Proxy for Apache

Hi Team,

I have configured nginx on port 8093 as directed still I got the task failed message after finishing the activity. Please check the assigned screenshot.

The changes are made in /etc/nginx/nginx.conf file!

Nginx|535x470

Thanks,
Mukesh

hello @mukeshfulewale,

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

Hi @rahulsoni

Ok Thanks for the information!