Skip to content

Commit

Permalink
fix: Expose correct dir for /id
Browse files Browse the repository at this point in the history
  • Loading branch information
kesara committed Jun 10, 2024
1 parent 5ac0460 commit c3f387f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions k8s/ietfweb/nginx-default.conf
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ server {
location /static/ {
alias /app/static/;
}
location /id {
alias /a/ietfdata/draft/archive/;
location /charter {
alias /a/ietfdata/doc/charter/;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
Expand All @@ -27,8 +27,8 @@ server {
add_header Content-Disposition 'attachment';
}
}
location /charter {
alias /a/ietfdata/doc/charter/;
location /cr {
alias /a/ietfdata/doc/conflict-review/;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
Expand All @@ -38,8 +38,8 @@ server {
add_header Content-Disposition 'attachment';
}
}
location /cr {
alias /a/ietfdata/doc/conflict-review/;
location /slides {
alias /a/ietfdata/doc/slides/;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
Expand All @@ -49,8 +49,8 @@ server {
add_header Content-Disposition 'attachment';
}
}
location /slides {
alias /a/ietfdata/doc/slides/;
location /archive/id {
alias /a/ietfdata/draft/archive/;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
Expand All @@ -60,8 +60,8 @@ server {
add_header Content-Disposition 'attachment';
}
}
location /archive/id {
alias /a/ietfdata/draft/archive/;
location /id {
alias /a/ietfdata/draft/repository;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
Expand Down

0 comments on commit c3f387f

Please sign in to comment.