mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-24 12:11:18 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@6293 72102866-910b-0410-8b05-ffd578937521
24 lines
708 B
Text
24 lines
708 B
Text
You have to do:
|
|
|
|
o make
|
|
o copy mod_gsweb.so in apache libexec (the apache directory of modules, in which you should have mod_mime.so, mod_alias.so,...)
|
|
o edit your apache configuration file:
|
|
|
|
- Add
|
|
|
|
LoadModule GSWeb_Module libexec/mod_gsweb.so
|
|
AddModule mod_gsweb.c
|
|
|
|
- Add Global configuration directives:
|
|
o gsweb configuration file path
|
|
GSWeb_ConfigFilePath /etc/httpd/conf/gsweb.conf (for exemple)
|
|
o gsweb alias
|
|
GSWeb_Alias /GSWeb (for exemple)
|
|
|
|
- Add the following lines for a virtual host (or all hosts)
|
|
<Location /GSWeb*>
|
|
SetHandler GSWeb
|
|
</Location>
|
|
|
|
o create your gsweb configuration file (see ../Doc/ConfigurationFile.html)
|
|
|