Leser: 1
![]() |
|< 1 ... 4 5 6 7 8 9 >| | ![]() |
83 Einträge, 9 Seiten |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<VirtualHost 127.0.0.1:80>
# ServerName develop.perl-community.de
# ServerAlias develop.perlcommunity.de
DocumentRoot D:/Eigene Dateien/Entwicklung/projekte/perl-community/pboard/html/
User web6
Group ftponly
ScriptAlias /cgi-bin/ D:/Eigene Dateien/Entwicklung/projekte/perl-community/pboard/html/cgi-bin/
ErrorLog D:/Eigene Dateien/Entwicklung/projekte/perl-community/pboard/log/error.log
CustomLog D:/Eigene Dateien/Entwicklung/projekte/perl-community/pboard/log/access.log combined
DirectoryIndex /overview/
<IfModule mod_perl.c>
PerlSetEnv PERL5LIB "D:/Eigene Dateien/Entwicklung/projekte/perl-community/pboard/html/perl-bin/"
PerlModule Apache::Registry
<Files board.pl>
SetHandler perl-script
PerlHandler Apache::Registry
Options ExecCGI
PerlSendHeader On
PerlModule Apache::DBI
</Files>
<Files upload.pl>
SetHandler perl-script
PerlHandler Apache::Registry
Options ExecCGI
PerlSendHeader On
PerlModule Apache::DBI
</Files>
<Files download.pl>
SetHandler perl-script
PerlHandler Apache::Registry
Options ExecCGI
PerlSendHeader On
PerlModule Apache::DBI
</Files>
PerlInitHandler Apache::StatINC
PerlRequire D:/Eigene Dateien/Entwicklung/projekte/perl-community/pboard/html/perl-bin/mod_perl_startup.pl
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteLog D:/Eigene Dateien/Entwicklung/projekte/perl-community/pboard/log/rewrite.log
RewriteRule /overview/(.*) /perl-bin/board.pl?action=overview;$2
RewriteRule /board/([0-9]+)/(.*) /perl-bin/board.pl?action=viewboard;boardid=$1;$2
RewriteRule /thread/([0-9]+)/(.*) /perl-bin/board.pl?action=viewThread;threadid=$1;$2
RewriteRule /download/(.+)/(.*) /perl-bin/download.pl?file=$1;$2
</IfModule>
</VirtualHost>
[E|B,03.01.2006, 00:02][quote=esskar,02.01.2006, 23:13]und jetzt? ich hab keine ahnung von apache... muss ich dass ding jetzt in die httpd.conf kopieren ?
![]() |
|< 1 ... 4 5 6 7 8 9 >| | ![]() |
83 Einträge, 9 Seiten |