13 lines
356 B
Text
13 lines
356 B
Text
server {
|
|
server_name childfr.ee;
|
|
listen 443 ssl;
|
|
listen [::]:443 ssl; #ipv6only=on;
|
|
http2 on;
|
|
ssl_certificate /etc/letsencrypt/live/asxp.io/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/asxp.io/privkey.pem;
|
|
#ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
|
|
|
|
location / {
|
|
proxy_pass http://localhost:8123;
|
|
}
|
|
}
|