blob: 2b76f5fbb0716c0af076d52df8a3a9ff2ed40c5f (
plain)
1
2
3
4
5
6
7
8
9
10
|
server {
listen {{soju_port}} ssl;
listen [::]:{{soju_port}} ssl;
ssl_certificate {{soju_ssl_cert}};
ssl_certificate_key {{soju_ssl_privkey}};
ssl_protocols TLSv1.2 TLSv1.3;
proxy_pass 127.0.0.1:{{soju_local_port}};
}
|