Nginx SSL termination

Moki Lv6
1
2
3
4
5
6
7
8
9
stream {
server {
listen 0.0.0.0:1000 ssl;
ssl_certificate cert.pem;
ssl_certificate_key key.pem;
proxy_ssl off;
proxy_pass backend:1000;
}
}
On this page
Nginx SSL termination