Correct error in Nginx example

This commit is contained in:
J. King 2019-08-06 08:31:20 -04:00
parent 262980d564
commit 265f3a1b6d

View file

@ -63,7 +63,7 @@ server {
# Fever protocol
location /fever/ {
# this path should not be behind HTTP authentication
try_files $uri @arsse_no_auth;
try_files $uri @arsse;
}
}
```