annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2034
d718511fc69f Begin work on moving to tiny-acme.
Violet7
parents:
diff changeset
1 local rootDir, domain = ...
d718511fc69f Begin work on moving to tiny-acme.
Violet7
parents:
diff changeset
2
d718511fc69f Begin work on moving to tiny-acme.
Violet7
parents:
diff changeset
3 %>
2036
2740f8a9ba3a First test prototype (also convert spaces to tabs and remove *.orig files)
Violet7
parents: 2034
diff changeset
4 # This config exists to serve up acme challenges on
2740f8a9ba3a First test prototype (also convert spaces to tabs and remove *.orig files)
Violet7
parents: 2034
diff changeset
5 # .well-known for initial domain verification by letsencrypt.
2740f8a9ba3a First test prototype (also convert spaces to tabs and remove *.orig files)
Violet7
parents: 2034
diff changeset
6 # see set_https in luan/src/luan/host/https.luan for more.
2740f8a9ba3a First test prototype (also convert spaces to tabs and remove *.orig files)
Violet7
parents: 2034
diff changeset
7 server {
2740f8a9ba3a First test prototype (also convert spaces to tabs and remove *.orig files)
Violet7
parents: 2034
diff changeset
8 server_name <%=domain%>;
2740f8a9ba3a First test prototype (also convert spaces to tabs and remove *.orig files)
Violet7
parents: 2034
diff changeset
9 listen 80;
2740f8a9ba3a First test prototype (also convert spaces to tabs and remove *.orig files)
Violet7
parents: 2034
diff changeset
10 listen [::]:80;
2034
d718511fc69f Begin work on moving to tiny-acme.
Violet7
parents:
diff changeset
11
2036
2740f8a9ba3a First test prototype (also convert spaces to tabs and remove *.orig files)
Violet7
parents: 2034
diff changeset
12 error_log <%=rootDir%>/error.log;
2740f8a9ba3a First test prototype (also convert spaces to tabs and remove *.orig files)
Violet7
parents: 2034
diff changeset
13 access_log <%=rootDir%>/access.log;
2034
d718511fc69f Begin work on moving to tiny-acme.
Violet7
parents:
diff changeset
14
2076
385ab09fb2ca initial draft
Violet7
parents: 2036
diff changeset
15 location /.well-known/acme-challenge/ {
385ab09fb2ca initial draft
Violet7
parents: 2036
diff changeset
16 root <%=rootDir%>;
2036
2740f8a9ba3a First test prototype (also convert spaces to tabs and remove *.orig files)
Violet7
parents: 2034
diff changeset
17 try_files $uri $uri/ =404;
2740f8a9ba3a First test prototype (also convert spaces to tabs and remove *.orig files)
Violet7
parents: 2034
diff changeset
18 }
2076
385ab09fb2ca initial draft
Violet7
parents: 2036
diff changeset
19
385ab09fb2ca initial draft
Violet7
parents: 2036
diff changeset
20 include nginx.default.conf;
385ab09fb2ca initial draft
Violet7
parents: 2036
diff changeset
21
2036
2740f8a9ba3a First test prototype (also convert spaces to tabs and remove *.orig files)
Violet7
parents: 2034
diff changeset
22 }
2034
d718511fc69f Begin work on moving to tiny-acme.
Violet7
parents:
diff changeset
23
d718511fc69f Begin work on moving to tiny-acme.
Violet7
parents:
diff changeset
24 <%
d718511fc69f Begin work on moving to tiny-acme.
Violet7
parents:
diff changeset
25