From 5ed66ca927f1847a8efcbc7e18013bdc2a1fa98e Mon Sep 17 00:00:00 2001 From: Ken Dreyer Date: Thu, 8 Nov 2018 13:34:15 -0700 Subject: [PATCH] hub: unlimited NameWidth for kojifiles Apache location Prior to this change, Apache's mod_autoindex would limit the file name lengths in when it displayed directory and file lists under the archive location /kojifiles. Koji archive filenames are often be longer than mod_autoindex's default of 20 bytes. Configure mod_autoindex to show the entire filenames. This makes it easier for users to browse /kojifiles to see at a glance which files are stored. --- hub/httpd.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/hub/httpd.conf b/hub/httpd.conf index 82cc2174..b8cfbaf2 100644 --- a/hub/httpd.conf +++ b/hub/httpd.conf @@ -28,6 +28,7 @@ Alias /kojifiles "/mnt/koji/" #you will need to follow all symlinks instead, e.g. #Options Indexes FollowSymLinks AllowOverride None + IndexOptions +NameWidth=* Order allow,deny Allow from all