4 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#
# Use name-based virtual hosting.
#
#NameVirtualHost 192.168.0.8
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for requests without a known
# server name.
#<VirtualHost oli.homesrv>
# ServerName oli.homesrv
# DocumentRoot "C:/wamp/wwwroot/cgi-bin/Oli/"
# ErrorLog "C:/wamp/apache2/logs/error/"
#</VirtualHost>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Listen 192.168.1.2:8089
Listen 192.168.1.2:8090
...
NameVirtualHost 192.168.1.2:8089
<VirtualHost 192.168.1.2:8089>
DocumentRoot F:/apacheweb/fabiani.net_neu_8089/html
ScriptAlias /cgi-bin/ "F:/apacheweb/fabiani.net_neu_8089/html/cgi-bin/"
ErrorLog F:/apacheweb/fabiani.net_neu_8089/log/8089_error.log
CustomLog F:/apacheweb/fabiani.net_neu_8089/log/8089.log combined
AccessFileName .htaccess
</VirtualHost>
NameVirtualHost 192.168.1.2:8090
<VirtualHost 192.168.1.2:8090>
DocumentRoot F:/apacheweb/board.perl-community.de_8090/html
ScriptAlias /cgi-bin/ "F:/apacheweb/board.perl-community.de_8090/html/cgi-bin/"
ErrorLog F:/apacheweb/board.perl-community.de_8090/log/error.log
CustomLog F:/apacheweb/board.perl-community.de_8090/log/access.log combined
AccessFileName .htaccess
</VirtualHost>
4 Einträge, 1 Seite |