On 10/19/18 10:29 AM, Guiseppin Thomas wrote:
Hi, Currently, I use a nginx configuration for mailman. It's work perfectly.
I tried to do the same with Apache, but the statics files are not delivered (404). ... <VirtualHost *:80> ServerName mailing.ddd.fr
ErrorLog ${APACHE_LOG_DIR}/mailing.error.log CustomLog ${APACHE_LOG_DIR}/mailing.access.log combined
<Location /static/> Alias "/opt/mailman/static/" </Location>
<Location /> ProxyPass http://localhost:8000/ ProxyPassReverse http://localhost:8000/ ProxyPreserveHost On </Location> </VirtualHost>/
In Apache, location <http://httpd.apache.org/docs/2.4/mod/core.html#location> is not appropriate for resources in the file system.
Try
Alias /static/ /opt/mailman/static/
not within a location block.
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan