1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-23 08:24:54 +00:00

Correct error in stand-alone Nginx sample

This commit is contained in:
J. King 2019-08-24 15:23:52 -04:00
parent 5bf791709b
commit fa3cfcd589

2
dist/nginx.conf vendored
View file

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