Mercurial Hosting > luan
annotate host/startup/nginx/nginx.ssl.conf.luan @ 1725:39af1c737191
use custom nginx conf for ssl
author | Vadim Filimonov <fffilimonov@yandex.ru> |
---|---|
date | Thu, 11 Aug 2022 12:34:29 +0200 |
parents | 0344a535b1db |
children | b5baa841ea1b |
rev | line source |
---|---|
1632 | 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; | |
1725
39af1c737191
use custom nginx conf for ssl
Vadim Filimonov <fffilimonov@yandex.ru>
parents:
1632
diff
changeset
|
21 <%=rootDir%>/sites/<%=domain%>/site/nginx.*.conf; |
1632 | 22 } |
23 <% |