mirror of
https://git.freebsd.org/ports.git
synced 2025-05-20 11:03:09 -04:00
Please note: - Web's static dirs have moved to a single dedicated directory. - Users should review webserver's /static configuration (examples in share/examples/sympa). PR: 223793 Submitted by: geoffroy desvernay <dgeo@centrale-marseille.fr> (maintainer) Relnotes: https://github.com/sympa-community/sympa/blob/6.2.22/NEWS.md
18 lines
468 B
Text
18 lines
468 B
Text
DocumentRoot "%%DATADIR%%"
|
|
AddDefaultCharset UTF-8
|
|
DirectoryIndex wws
|
|
Options +Indexes
|
|
# you may replace 'fcgid' by 'fastcgi'
|
|
LoadModule fcgid_module libexec/apache2/mod_fcgid.so
|
|
|
|
<Location /wws>
|
|
SetHandler fcgid-script
|
|
</Location>
|
|
<Directory %%DATADIR%%>
|
|
Require all granted
|
|
</Directory>
|
|
<Directory %%PREFIX%%/libexec/sympa>
|
|
Require all granted
|
|
</Directory>
|
|
Alias /sympa-static %%DATADIR%%/static
|
|
ScriptAlias /wws %%PREFIX%%/libexec/sympa/wwsympa-wrapper
|