13 lines
282 B
Plaintext
13 lines
282 B
Plaintext
|
server {
|
||
|
listen 10.8.0.1:443 ssl http2;
|
||
|
#listen [::]:443 ssl http2;
|
||
|
server_name cshd.ins;
|
||
|
|
||
|
ssl_certificate /etc/nginx/ssl/cshd-ins.chain.crt;
|
||
|
ssl_certificate_key /etc/nginx/ssl/cshd-ins.key.pem;
|
||
|
|
||
|
location / {
|
||
|
proxy_pass http://10.8.0.1:5479;
|
||
|
}
|
||
|
}
|