Answer the question
In order to leave comments, you need to log in
How does SSL work on a non-standard port?
There is nginx which has
server { listen 80; server_name www.example.com; ... }
server { listen 443 ssl; server_name www.example.com; ... }
Answer the question
In order to leave comments, you need to log in
I found a working solution - add to nginx:
server {
listen 8100 ssl;
server_name www.example.com;
proxy_pass http://www.example.com:{haproxy_local_port};
...
}
However, architecturally it does not look very cool.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question