Added nginx CT
This commit is contained in:
22
CT-Files/nginx/Configs/nginx_template_ssl
Normal file
22
CT-Files/nginx/Configs/nginx_template_ssl
Normal 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
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user