hallo community,
folgendes problem: auf einem xp-rechner läuft apache 2.2 und bugzilla und ist erreichbar mit
http://servername/bugzilla
jetzt will ich, dass auch eine mit doxygen erzeugte dokumentation online ist
hier ein auszug aus http.conf (wie in der bugzilla-doku beschrieben)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
DocumentRoot "C:/www/bugzilla-2.22.2"
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory "C:/www/bugzilla-2.22.2">
Options Indexes FollowSymLinks ExecCGI
AllowOverrdide All
Allow from all
ScriptInterpreterSource Registry-Strict
DirectoryIndex index.cgi
</Directory>
<IfModule alias_module>
Alias /bugzilla "C:/www/bugzilla-2.22.2/"
</IfModule>
wie muss ich die config erweitern, dass mit
http://servername/doxygen c:/www/doxygen/html/index.html gestartet wird?
danke schonmal :)