comparison host/startup/nginx/nginx.ssl.conf.luan @ 1632:0344a535b1db

add doc
author fffilimonov
date Tue, 14 Dec 2021 07:41:01 +0000
parents
children 39af1c737191
comparison
equal deleted inserted replaced
1631:35c626c06dd5 1632:0344a535b1db
1 local rootDir, domain = ...
2
3 %>
4 server {
5 server_name <%=domain%>;
6 listen 80;
7 return 301 https://$http_host$request_uri;
8 }
9
10 server {
11 server_name <%=domain%>;
12 listen 443 ssl;
13
14 if ($host != $server_name) {
15 return 301 http://$http_host$request_uri;
16 }
17
18 ssl_certificate <%=rootDir%>/sites/<%=domain%>/fullchain.cer;
19 ssl_certificate_key <%=rootDir%>/sites/<%=domain%>/<%=domain%>.key;
20 include <%=rootDir%>/local/nginx.default.conf;
21 }
22 <%