Leser: 1
![]() |
|< 1 2 3 4 ... 8 >| | ![]() |
76 Einträge, 8 Seiten |
1
2
3
4
5
DocumentRoot "/usr/local/httpd/htdocs"
ServerName new.host.name
ServerAdmin [EMAIL=you@your.address]you@your.address[/EMAIL]
ErrorLog /var/log/httpd/error_log
TransferLog /var/log/httpd/access_log
1
2
3
4
<VirtualHost www.projektgemeinschaft.de>
ServerName www.projektgemeinschaft.de
DocumentRoot /usr/local/httpd/htdocs/verein/
</VirtualHost>
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
56
...
<VirtualHost www.projektgemeinschaft.de>
ServerName www.projektgemeinschaft.de
ServerAlias *.projektgemeinschaft.de
DocumentRoot /usr/local/httpd/htdocs/verein/
</VirtualHost>
<VirtualHost _default_:443>
DocumentRoot "/usr/local/httpd/htdocs"
ServerName new.host.name
ServerAdmin [EMAIL=you@your.address]you@your.address[/EMAIL]
ErrorLog /var/log/httpd/error_log
TransferLog /var/log/httpd/access_log
SSLEngine on
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
SSLCertificateFile /etc/httpd/ssl.crt/server.crt
#SSLCertificateFile /etc/httpd/ssl.crt/server-dsa.crt
SSLCertificateKeyFile /etc/httpd/ssl.key/server.key
<Files ~ "\.(cgi|shtml|phtml|php3?)$">
SSLOptions +StdEnvVars
</Files>
<Directory "/usr/local/httpd/cgi-bin">
SSLOptions +StdEnvVars
</Directory>
SetEnvIf User-Agent ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
CustomLog /var/log/httpd/ssl_request_log \
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
</VirtualHost>
</IfDefine>
Include /etc/httpd/suse_include.conf
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^/index\.html$ /cgi-bin/index.pl [PT]
RewriteRule ^/gewinnspiel$ /gewinnspiel.html [PT]
RewriteRule ^/werbung$ /home/werbung.html [PT]
RewriteRUle ^/profil/(.*)$ /cgi-bin/index.pl?ID=profil&userid=$1 [PT]
RewriteRule ^/pgm/(.*)\.html$ /cgi-bin/test.pl?ID=show&pid=$1 [PT]
RewriteRule ^/phero$ /frame.html [PT]
RewriteRule ^/activate$ /cgi-bin/activate.pl [PT]
RewriteRule ^/userpics/(.*)_NO-CACHE(.*).jpg$ /userpics/$1.jpg [PT]
</IfModule>
1
2
3
4
<VirtualHost IP-Adresse>
ServerName projektgemeinschaft.de
DocumentRoot /usr/local/httpd/htdocs/verein/
</VirtualHost>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<Location /cgi-bin/index.pl> # das try2flirt.de - Script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
</Location>
<VirtualHost 212.6.225.4>
ServerName projektgemeinschaft.de
DocumentRoot /usr/local/httpd/htdocs/verein/
</VirtualHost>
<VirtualHost *>
DocumentRoot "/usr/local/httpd/htdocs"
ServerName new.host.name
ServerAdmin [EMAIL=you@your.address]you@your.address[/EMAIL]
ErrorLog /var/log/httpd/error_log
TransferLog /var/log/httpd/access_log
1
2
3
4
5
6
7
8
9
<VirtualHost 212.6.225.4>
ServerName projektgemeinschaft.de
DocumentRoot /usr/local/httpd/htdocs/verein/
<Location /cgi-bin/projektgemeinschaft_index.pl>
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
</Location>
</VirtualHost>
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
NameVirtualHost 212.6.225.4
<VirtualHost 212.6.225.4>
ServerName www.try2flirt.de
DocumentRoot /usr/local/httpd/htdocs
ServerAdmin [EMAIL=you@your.address]you@your.address[/EMAIL]
ErrorLog /var/log/httpd/error_log
TransferLog /var/log/httpd/access_log
<Location /cgi-bin/index.pl> # das try2flirt.de - Script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
</Location>
</VirtualHost>
<VirtualHost 212.6.225.4>
ServerName www.projektgemeinschaft.de
ServerAlias *.projektgemeinschaft.de
DocumentRoot /usr/local/httpd/htdocs/verein/
<Location /cgi-bin/projektgemeinschaft_index.pl>
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
</Location>
</VirtualHost>
![]() |
|< 1 2 3 4 ... 8 >| | ![]() |
76 Einträge, 8 Seiten |