Created
December 7, 2018 14:29
-
-
Save icasimpan/307269155dfa6c9e9d2da2649000da1b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IndexOptions NameWidth=* | |
Something like below: | |
</VirtualHost *:80> | |
... | |
... | |
... | |
<Directory "/var/www/sites/RELEASES"> | |
Options +Indexes +FollowSymLinks | |
IndexOptions NameWidth=* | |
AllowOverride All | |
AuthType Basic | |
AuthName "Development Area" | |
AuthUserFile /var/www/sites/.htpasswd | |
Require valid-user | |
</Directory> | |
... | |
... | |
</VirtualHost> | |
See https://www.networkworld.com/article/2311687/software/showing-long-file-names-in-apache-directory-listings.html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment