Skip to content

Commit

Permalink
fix: Add missing www6 dirs (#470)
Browse files Browse the repository at this point in the history
  • Loading branch information
kesara committed Jun 20, 2024
1 parent 9750430 commit 60b62c9
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions k8s/ietfweb/nginx-default.conf
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,43 @@ server {

error_page 404 = @error_redirect;
}
location /download {
alias /a/www/www6s/download;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
charset utf-8;

error_page 404 = @error_redirect;
}
location /lib {
alias /a/www/www6s/lib;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
charset utf-8;
expires 30d;

error_page 404 = @error_redirect;
}
location /staging {
alias /a/www/www6s/staging;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
charset utf-8;

error_page 404 = @error_redirect;
}
location /status-report {
alias /a/www/www6s/status-report;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
charset utf-8;

error_page 404 = @error_redirect;
}
location @error_redirect {
proxy_pass http://127.0.0.1:8000;
proxy_set_header Host $${keepempty}host;
Expand Down

0 comments on commit 60b62c9

Please sign in to comment.