Mercurial Hosting > luan
changeset 2077:6016342e54ea ssltesting
minor
| author | Violet7 |
|---|---|
| date | Tue, 09 Dec 2025 17:08:57 -0800 |
| parents | 385ab09fb2ca |
| children | ac991d32dea5 |
| files | host/startup/nginx/nginx.conf.luan src/luan/host/https.luan |
| diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/host/startup/nginx/nginx.conf.luan Tue Dec 09 16:37:56 2025 -0800 +++ b/host/startup/nginx/nginx.conf.luan Tue Dec 09 17:08:57 2025 -0800 @@ -28,6 +28,6 @@ } include <%=rootDir%>/sites/*/nginx.ssl.conf; - include /tmp/acme_setup/*/nginx.acme_setup.conf; + include <%=rootDir%>/sites/*/nginx.acme_setup.conf; } <%
--- a/src/luan/host/https.luan Tue Dec 09 16:37:56 2025 -0800 +++ b/src/luan/host/https.luan Tue Dec 09 17:08:57 2025 -0800 @@ -80,7 +80,7 @@ -- generate and write the conf -- TODO: maybe store this in the ssl files dir? local conf = load_file(luanhost_file.."startup/nginx/nginx.acme_setup.conf.luan") - local acme_nginx = ` conf(site_dir_str,domain) ` + local acme_nginx = ` conf(site_dir.canonical.to_string(),domain) ` local outfile = site_dir.child("nginx.acme_setup.conf") outfile.write(acme_nginx)
