Skip to content

Commit

Permalink
fix: Normalize location path to avoid multiple forward slashes
Browse files Browse the repository at this point in the history
  • Loading branch information
dav-pascual committed Mar 6, 2023
1 parent c7db9c9 commit 6957416
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions common/etc/nginx/templates/default.conf.template
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@ server {
# information that could be used to find an exploit.
server_tokens off;

# Normalize location path. Remove instances of double/multipe forward slashes.
# Disabling merge_slashes is necessary for this feature to work.
# Disabling port redirection to avoid broken URLs in bridged hosts
port_in_redirect off;
merge_slashes off;
rewrite (.*?)//+(.*) $1/$2 redirect;

# Uncomment this for a HTTP header that will let you know the cache status
# of an object.
# add_header X-Cache-Status $upstream_cache_status;
Expand Down

0 comments on commit 6957416

Please sign in to comment.