![]() |
|< 1 2 3 >| | ![]() |
23 Einträge, 3 Seiten |
1
2
3
4
5
6
7
8
9
10
11
12
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
<Directory "/var/www/cgi-bin/">
Options ExecCGI
</Directory>
Quote<Directory "/var/www/cgi-bin/">
Options ExecCGI
</Directory>
renee+2008-11-20 09:45:30--Hast Du für .pl-Dateien einen ScriptHandler eingefügt?
AddHandler cgi-script .pl
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
LoadModule ssl_module /usr/lib/apache2/modules/mod_ssl.so
NameVirtualHost *:443
Listen 443
SSLMutex default
SSLRandomSeed startup builtin
SSLSessionCache none
<VirtualHost *:443>
ServerName
SSLEngine On
## SSLCertificateFile
## SSLCertificateKeyFile
DocumentRoot /var/www
<Directory "/var/www/">
Options ExecCGI Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
<Directory "/var/cgi-bin/">
Options +ExecCGI
SetHandler cgi-script
</Directory>
ErrorLog /var/log/apache2/error.log
LogLevel warn
CustomLog /var/log/apache2/access.log combinend
ServerSignature On
</VirtualHost>
![]() |
|< 1 2 3 >| | ![]() |
23 Einträge, 3 Seiten |