Skip to content

Commit

Permalink
chore: Fix issue without traling slash. (#499)
Browse files Browse the repository at this point in the history
  • Loading branch information
kesara authored Aug 15, 2024
1 parent c335d04 commit 0f15653
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions k8s/ietfweb/nginx-default.conf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ server {

error_page 404 = @error_redirect;
}
location /charter {
location /charter/ {
alias /a/ietfdata/doc/charter/;
autoindex on;
autoindex_exact_size off;
Expand All @@ -33,7 +33,7 @@ server {

error_page 404 = @error_redirect;
}
location /cr {
location /cr/ {
alias /a/ietfdata/doc/conflict-review/;
autoindex on;
autoindex_exact_size off;
Expand All @@ -46,7 +46,7 @@ server {

error_page 404 = @error_redirect;
}
location /slides {
location /slides/ {
alias /a/ietfdata/doc/slides/;
autoindex on;
autoindex_exact_size off;
Expand All @@ -59,7 +59,7 @@ server {

error_page 404 = @error_redirect;
}
location /archive/id {
location /archive/id/ {
alias /a/ietfdata/draft/archive/;
autoindex on;
autoindex_exact_size off;
Expand All @@ -72,7 +72,7 @@ server {

error_page 404 = @error_redirect;
}
location /id {
location /id/ {
alias /a/ietfdata/draft/repository;
autoindex on;
autoindex_exact_size off;
Expand All @@ -85,7 +85,7 @@ server {

error_page 404 = @error_redirect;
}
location /ietf-ftp {
location /ietf-ftp/ {
alias /a/www/ietf-ftp;
autoindex on;
autoindex_exact_size off;
Expand All @@ -98,7 +98,7 @@ server {

error_page 404 = @error_redirect;
}
location /rfc {
location /rfc/ {
alias /a/www/ietf-ftp/rfc;
autoindex on;
autoindex_exact_size off;
Expand All @@ -111,7 +111,7 @@ server {

error_page 404 = @error_redirect;
}
location /proceedings {
location /proceedings/ {
alias /a/www/www6s/proceedings;
autoindex on;
autoindex_exact_size off;
Expand All @@ -120,7 +120,7 @@ server {

error_page 404 = @error_redirect;
}
location /download {
location /download/ {
alias /a/www/www6s/download;
autoindex on;
autoindex_exact_size off;
Expand All @@ -129,7 +129,7 @@ server {

error_page 404 = @error_redirect;
}
location /lib {
location /lib/ {
alias /a/www/www6s/lib;
autoindex on;
autoindex_exact_size off;
Expand All @@ -139,7 +139,7 @@ server {

error_page 404 = @error_redirect;
}
location /staging {
location /staging/ {
alias /a/www/www6s/staging;
autoindex on;
autoindex_exact_size off;
Expand All @@ -148,7 +148,7 @@ server {

error_page 404 = @error_redirect;
}
location /status-report {
location /status-report/ {
alias /a/www/www6s/status-report;
autoindex on;
autoindex_exact_size off;
Expand Down

0 comments on commit 0f15653

Please sign in to comment.