This link has been bookmarked by 41 people . It was first bookmarked on 27 Nov 2006, by Scot Gardner.
-
13 Sep 11
-
13 Jun 11
-
02 Feb 11
s_reinert##
## SSL Virtual Host Context
##
<VirtualHost 127.0.0.1:80>
#Just to keep things sane...
DocumentRoot "/Library/WebServer/Documents"
ServerName 127.0.0.1
ServerAdmin bobdavis@mac.com
SSLEngine off
</VirtualHost>
<VirtualHost 127.0.0.1:443>
# General setup for the virtual host
DocumentRoot "/Library/WebServer/Documents"
#ServerName has to match the server you entered into the CSR
ServerName 127.0.0.1
ServerAdmin bobdavis@mac.com
ErrorLog /var/log/httpd/error_log
TransferLog /var/log/httpd/access_log
# SSL Engine Switch:
# Enable/Disable SSL for this virtual host.
SSLEngine on
# enable SSLv3 but not SSLv2
SSLProtocol all -SSLv2
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
# Path to your certificates and private key
SSLCertificateFile /etc/httpd/ssl.key/server.crt
SSLCertificateKeyFile /etc/httpd/ssl.key/server.key
<Files ~ "\.(cgi|shtml|phtml|php3?)$">
SSLOptions +StdEnvVars
</Files>
<Directory "/Library/WebServer/CGI-Executables">
SSLOptions +StdEnvVars
</Directory>
# correction for browsers that don't always handle SSL connections well
SetEnvIf User-Agent ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
# Per-Server Logging:
# The home of a custom SSL log file. Use this when you want a
# compact non-error SSL logfile on a virtual host basis.
CustomLog /var/log/httpd/ssl_request_log \
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
</VirtualHost>
</IfModule> -
20 Nov 10
-
21 Aug 10
-
30 Jul 10
-
05 Jul 10
-
14 May 10
-
10 Mar 10
-
29 Jan 10
-
24 Jan 10
-
26 Nov 09
-
04 Jul 09
-
03 Apr 09
-
28 Jan 09
-
08 Jul 08
-
11 Mar 08
-
11 Jan 08
-
10 Oct 07
-
09 Oct 07
-
27 Nov 06
-
04 Jul 06
-
14 Jun 06
-
20 Mar 06
-
13 Mar 06
-
05 Feb 06
-
05 Aug 04
Would you like to comment?
Join Diigo for a free account, or sign in if you are already a member.