Virtual Host with imp with ssl
EdwardSPL@ita.org.mo
EdwardSPL@ita.org.mo
Thu, 22 Nov 2001 19:46:39 +0800
Hello,
Who can help me to set httpd.conf to start apache ( Virtual Host ) +
ssl + imp ?
This is my httpd.conf :
<IfDefine SSL>
<VirtualHost 192.168.200.1:443>
DocumentRoot "/home/webmail/horde/imp"
ServerName webmail.test.com
ServerAdmin test@test.com
ErrorLog /usr/local/apache/logs/error_log
TransferLog /usr/local/apache/logs/access_log
SSLEngine on
SSLCipherSuite
ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
SSLCertificateFile /usr/local/apache/conf/ssl.crt/server.crt
SSLCertificateKeyFile /usr/local/apache/conf/ssl.key/server.key
<Files ~ "\.(cgi|shtml|phtml|php3?)$">
SSLOptions +StdEnvVars
</Files>
<Directory "/usr/local/apache/cgi-bin">
SSLOptions +StdEnvVars
</Directory>
<Directory "/home/webmail/horde">
Options Indexes FollowSymLinks
AllowOverride None
order allow,deny
allow from all
<IfModule mod_php3.c>
php3_include_path '/home/webmaster/html/horde/phplib:.'
php3_auto_prepend_file
/home/webmaster/html/horde/phplib/prepend.php3
php3_magic_quotes_gpc Off
php3_track_vars On
</IfModule>
<IfModule mod_php4.c>
php_value include_path '/home/webmaster/html/horde/phplib:.'
php_value auto_prepend_file
/home/webmaster/html/horde/phplib/prepend.php3
php_flag register_globals On
php_flag magic_quotes_gpc Off
php_flag track_vars On
</IfModule>
</Directory>
SetEnvIf User-Agent ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
CustomLog /usr/local/apache/logs/ssl_request_log \
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
</VirtualHost>
</IfDefine>
Any mistake ?
Thank for your help !
Edward.