Skip to content

Commit

Permalink
fix: Add trailing slash to alias (#502)
Browse files Browse the repository at this point in the history
  • Loading branch information
kesara authored Aug 26, 2024
1 parent b388f8b commit 36bafea
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions k8s/ietfweb/nginx-default.conf
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ server {
error_page 404 = @error_redirect;
}
location /id/ {
alias /a/ietfdata/draft/repository;
alias /a/ietfdata/draft/repository/;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
Expand All @@ -86,7 +86,7 @@ server {
error_page 404 = @error_redirect;
}
location /ietf-ftp/ {
alias /a/www/ietf-ftp;
alias /a/www/ietf-ftp/;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
Expand All @@ -99,7 +99,7 @@ server {
error_page 404 = @error_redirect;
}
location /rfc/ {
alias /a/www/ietf-ftp/rfc;
alias /a/www/ietf-ftp/rfc/;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
Expand All @@ -112,7 +112,7 @@ server {
error_page 404 = @error_redirect;
}
location /proceedings/ {
alias /a/www/www6s/proceedings;
alias /a/www/www6s/proceedings/;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
Expand All @@ -121,7 +121,7 @@ server {
error_page 404 = @error_redirect;
}
location /download/ {
alias /a/www/www6s/download;
alias /a/www/www6s/download/;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
Expand All @@ -130,7 +130,7 @@ server {
error_page 404 = @error_redirect;
}
location /lib/ {
alias /a/www/www6s/lib;
alias /a/www/www6s/lib/;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
Expand All @@ -140,7 +140,7 @@ server {
error_page 404 = @error_redirect;
}
location /staging/ {
alias /a/www/www6s/staging;
alias /a/www/www6s/staging/;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
Expand All @@ -149,7 +149,7 @@ server {
error_page 404 = @error_redirect;
}
location /status-report/ {
alias /a/www/www6s/status-report;
alias /a/www/www6s/status-report/;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
Expand Down

0 comments on commit 36bafea

Please sign in to comment.