ports/mail/sympa/files/apache.sample.in
Kurt Jaeger d573ffd406 mail/sympa: update 6.2.16 -> 6.2.22
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
2017-11-26 20:29:06 +00:00

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