I am wanting to use nginx to redirect cloud.ventureforth.com to https://129.144.5.35/ords/f?p=1000. I also want ot mask the https: redirect. Here is what I have in my config.
server {
listen 80;
server_name cloud.ventureforth.com;
location / {
proxy_pass https://129.144.5.35/ords/f?p=1000;
}
}
When I type cloud.ventureforth.com in the browser, I get cloud.ventureforth.com:1:::::
Any suggestions would be helpful.
server {
listen 80;
server_name cloud.ventureforth.com;
location / {
proxy_pass https://129.144.5.35/ords/f?p=1000;
}
}
When I type cloud.ventureforth.com in the browser, I get cloud.ventureforth.com:1:::::
Any suggestions would be helpful.