Hello.
I managed to setup the reverse proxy for http, but I get the following error in the browser when I adjust the config for ssl.
[i]"Secure Connection Failed
An error occurred during a connection to 10.xx.yy.44.
SSL received a record that exceeded the maximum permissible length.
(Error code: ssl_error_rx_record_too_long)"[/i]
My config is:
[code]
#Reverse Proxy
upstream portal {
server 10.xx.yy.31:443;
}
server {
listen 443;
location / {
proxy_pass https://portal;
}
}
[/code]
Any help with this would be greatly appreciated.
Thanks
Dave