Opened 8 years ago

Closed 8 years ago

#4 closed defect (fixed)

Apache not serving assets from "/icons" directory

Reported by: pat Owned by: vance
Priority: minor Component: server
Keywords: Cc:

Description

Apache is currently not serving up assets under "/icons" that are used by the Mailman admin pages. The specific assets I noted that are no longer served up are:

/icons/mailman.jpg
/icons/PythonPowered.png
/icons/gnu-head-tiny.jpg

Change History (3)

comment:1 Changed 8 years ago by admin

  • Status changed from new to assigned

comment:2 Changed 8 years ago by vance

  • Status changed from assigned to accepted

comment:3 Changed 8 years ago by vance

  • Resolution set to fixed
  • Status changed from accepted to closed

Did not realize that Mailman depended on configuration directives in autoindex.conf. Copied these into the virtual host configuration files as noted below.

  • nonssl.conf

    old new  
    103103        Require all granted
    104104        AddDefaultCharset Off
    105105    </Directory>
     106
     107    Alias /icons/ "/usr/share/httpd/icons/"
     108    <Directory "/usr/share/httpd/icons">
     109        Options Indexes MultiViews FollowSymlinks
     110        AllowOverride None
     111        Require all granted
     112    </Directory>
    106113   
    107114    #
    108115    #  httpd configuration settings for Tiny Tiny RSS
  • ssl.conf

    old new  
    318318        Require all granted
    319319        AddDefaultCharset Off
    320320    </Directory>
     321
     322    Alias /icons/ "/usr/share/httpd/icons/"
     323    <Directory "/usr/share/httpd/icons">
     324        Options Indexes MultiViews FollowSymlinks
     325        AllowOverride None
     326        Require all granted
     327    </Directory>
    321328   
    322329    #
    323330    #  httpd configuration settings for Tiny Tiny RSS
Note: See TracTickets for help on using tickets.