Added nginx CT

This commit is contained in:
2021-09-21 00:37:58 +00:00
parent 361661babf
commit f46df35d6d
12 changed files with 278 additions and 3 deletions

View File

@@ -0,0 +1,22 @@
server {
listen 80;
listen [::]:80;
server_name DOMAINname;
location / {
return 301 https://$host$request_uri;
}
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name DOMAINname;
ssl_certificate /etc/acmesh/inst/DOMAINname/fullchain.pem;
ssl_certificate_key /etc/acmesh/inst/DOMAINname/key.pem;
ssl_trusted_certificate /etc/acmesh/inst/DOMAINname/fullchain.pem;
#ConfHere
}