Skip to content

Commit

Permalink
chore: Expose /rfc
Browse files Browse the repository at this point in the history
  • Loading branch information
kesara committed Jun 11, 2024
1 parent 00b8c76 commit 0dbcce2
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions k8s/ietfweb/nginx-default.conf
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,17 @@ server {
autoindex_localtime on;
charset utf-8;

location ~* \.xml$ {
add_header Content-Disposition 'attachment';
}
}
location /rfc {
alias /a/www/ietf-ftp/rfc;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
charset utf-8;

location ~* \.xml$ {
add_header Content-Disposition 'attachment';
}
Expand Down

0 comments on commit 0dbcce2

Please sign in to comment.