2000-03-16 16:16:49 +00:00
|
|
|
You have to do:
|
|
|
|
|
2002-12-11 21:58:13 +00:00
|
|
|
For Apache 1.x:
|
|
|
|
o make -f GNUmakefile-Apache1x
|
|
|
|
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:
|
2000-03-16 16:16:49 +00:00
|
|
|
|
2002-12-11 21:58:13 +00:00
|
|
|
- Add
|
2000-03-16 16:16:49 +00:00
|
|
|
|
2002-12-11 21:58:13 +00:00
|
|
|
LoadModule GSWeb_Module libexec/mod_gsweb.so
|
|
|
|
AddModule mod_gsweb.c
|
2000-03-16 16:16:49 +00:00
|
|
|
|
2002-12-11 21:58:13 +00:00
|
|
|
- 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)
|
2000-03-16 16:16:49 +00:00
|
|
|
|
2002-12-11 21:58:13 +00:00
|
|
|
- Add the following lines for a virtual host (or all hosts)
|
|
|
|
<Location /GSWeb*>
|
|
|
|
SetHandler GSWeb
|
|
|
|
</Location>
|
2000-03-16 16:16:49 +00:00
|
|
|
|
2002-12-11 21:58:13 +00:00
|
|
|
o create your gsweb configuration file (see ../Doc/ConfigurationFile.html)
|
|
|
|
|
|
|
|
|
|
|
|
For Apache 2.x:
|
|
|
|
o make -f GNUmakefile-Apache2x all
|
|
|
|
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
|
|
|
|
|
|
|
|
- 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)
|
2000-03-16 16:16:49 +00:00
|
|
|
|