comparison host/startup/nginx/nginx.acme_setup.conf.luan @ 2076:385ab09fb2ca ssltesting

initial draft
author Violet7
date Tue, 09 Dec 2025 16:37:56 -0800
parents 2740f8a9ba3a
children d7de1f976c1d
comparison
equal deleted inserted replaced
2075:db677318ce63 2076:385ab09fb2ca
10 listen [::]:80; 10 listen [::]:80;
11 11
12 error_log <%=rootDir%>/error.log; 12 error_log <%=rootDir%>/error.log;
13 access_log <%=rootDir%>/access.log; 13 access_log <%=rootDir%>/access.log;
14 14
15 root <%=rootDir%>; 15 location /.well-known/acme-challenge/ {
16 index index.html; 16 root <%=rootDir%>;
17
18 location / {
19 try_files $uri $uri/ =404; 17 try_files $uri $uri/ =404;
20 } 18 }
19
20 include nginx.default.conf;
21
21 } 22 }
22 23
23 <% 24 <%
24 25