Hi Rich,
My Nexus instance is running on Windows.
I am trying Nginx now, i am still waiting for my DNS to be setup but in the mean time i wanted to try with IP address.
I am running nginx on port 90 and nexus on port 8081. When i try localhost:90 on the browser it is trying to load nexus instance but not loading it completely.
The rewrite is ignoring the port and the requests are going to localhost/....and i am getting 404 errors.
Any suggestions on how to fix it.
I followed the documentation and updated nginx config to
erver {
listen *:90;
server_name localhost;
# allow large uploads of files
client_max_body_size 1G;
# optimize downloading files larger than 1G
#proxy_max_temp_file_size 2G;
location / {
proxy_pass http://localhost:8082;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
--Thankyou.