2
0

The nginx.conf now considers common "/.well-known/" files (e.g caldav, carddav).

This commit is contained in:
2026-01-14 21:44:40 +01:00
parent e7054c4e7d
commit d99af2ffa9
2 changed files with 2 additions and 2 deletions

BIN
.metadata

Binary file not shown.

View File

@@ -22,8 +22,8 @@ server {
access_log $PAR_SERVICE/logs/web/error.log combined if=$errorlog_$PAR_PROXYPORT; access_log $PAR_SERVICE/logs/web/error.log combined if=$errorlog_$PAR_PROXYPORT;
# Let's Encrypt (acme.sh) support. # Let's Encrypt (acme.sh) support.
location /.well-known/ { location ~ ^(/\.well-known/(?!(caldav|carddav|nodeinfo|webfinger)).*$) {
proxy_pass http://$PAR_ACMEHOST:$PAR_ACMEPORT; proxy_pass http://localhost:8100;
error_page 500 502 503 504 @proxy_error; error_page 500 502 503 504 @proxy_error;
} }