Fixing bug in Caddyfile with the '/views.php?view=File*' path.

Caddyfile expects all path specific 'matchers' to begin with a '/'
https://caddyserver.com/docs/caddyfile/matchers#syntax
This commit is contained in:
Jake Herbst
2022-05-15 13:10:39 -04:00
parent c31969e316
commit b70aeac151
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -212,7 +212,7 @@ http://localhost http://$(hostname).local ${BIRDNETPI_URL} {
handle /Charts/* {
file_server browse
}
basicauth views.php?view=File* {
basicauth /views.php?view=File* {
birdnet ${HASHWORD}
}
basicauth /Processed* {
+1 -1
View File
@@ -18,7 +18,7 @@ http://localhost http://$(hostname).local ${BIRDNETPI_URL} {
handle /Charts/* {
file_server browse
}
basicauth views.php?view=File* {
basicauth /views.php?view=File* {
birdnet ${HASHWORD}
}
basicauth /Processed* {