Moved servers.json config on nginx above another less restrictive but conflicting rule

This commit is contained in:
Alejandro Celaya 2021-05-29 11:53:06 +02:00
parent 76ebbd318a
commit bbc3342c00

View file

@ -20,16 +20,16 @@ server {
add_header Cache-Control "public"; add_header Cache-Control "public";
} }
# servers.json may be on the root, or in conf.d directory
location = /servers.json {
try_files /servers.json /conf.d/servers.json;
}
# When requesting static paths with extension, try them, and return a 404 if not found # When requesting static paths with extension, try them, and return a 404 if not found
location ~* .+\.(css|js|html|png|jpe?g|gif|bmp|ico|json|csv|otf|eot|svg|svgz|ttf|woff|woff2|ijmap|pdf|tif|map) { location ~* .+\.(css|js|html|png|jpe?g|gif|bmp|ico|json|csv|otf|eot|svg|svgz|ttf|woff|woff2|ijmap|pdf|tif|map) {
try_files $uri $uri/ =404; try_files $uri $uri/ =404;
} }
# servers.json may be on the root, or in it's own directory (ie, mounting a volume in Cattle)
location = /servers.json {
try_files /servers.json /conf.d/servers.json;
}
# When requesting a path without extension, try it, and return the index if not found # When requesting a path without extension, try it, and return the index if not found
# This allows HTML5 history paths to be handled by the client application # This allows HTML5 history paths to be handled by the client application
location / { location / {