github.com/ddev/ddev@v1.23.2-0.20240519125000-d824ffe36ff3/containers/ddev-webserver/ddev-webserver-base-files/etc/apache2/mods-available/alias.conf (about) 1 <IfModule alias_module> 2 # Aliases: Add here as many aliases as you need (with no limit). The format is 3 # Alias fakename realname 4 # 5 # Note that if you include a trailing / on fakename then the server will 6 # require it to be present in the URL. So "/icons" isn't aliased in this 7 # example, only "/icons/". If the fakename is slash-terminated, then the 8 # realname must also be slash terminated, and if the fakename omits the 9 # trailing slash, the realname must also omit it. 10 # 11 # We include the /icons/ alias for FancyIndexed directory listings. If 12 # you do not use FancyIndexing, you may comment this out. 13 14 Alias /icons/ "/usr/share/apache2/icons/" 15 16 <Directory "/usr/share/apache2/icons"> 17 Options FollowSymlinks 18 AllowOverride None 19 Require all granted 20 </Directory> 21 22 </IfModule> 23 24 # vim: syntax=apache ts=4 sw=4 sts=4 sr noet