]> git.pld-linux.org Git - packages/apache1-mod_ssl.git/blame - apache-mod_ssl.conf
- fix SSLSessionCache and SSLMutex location
[packages/apache1-mod_ssl.git] / apache-mod_ssl.conf
CommitLineData
1dd2ee18 1# $Id$
fd3d5f6a 2LoadModule ssl_module modules/mod_ssl.so
bf912852 3
bf912852
MM
4# This is the Apache server configuration file providing SSL support.
5# It contains the configuration directives to instruct the server how to
d7c7c9e8
ER
6# serve pages over an https connection. For detailing information about these
7# directives see <URL:http://httpd.apache.org/docs/2.2/mod/mod_ssl.html>
8
9<IfModule mod_ssl.c>
bf912852 10#
d7c7c9e8
ER
11# Pseudo Random Number Generator (PRNG):
12# Configure one or more sources to seed the PRNG of the SSL library.
13# The seed data should be of good random quality.
14# WARNING! On some platforms /dev/random blocks if not enough entropy
15# is available. This means you then cannot use the /dev/random device
16# because it would lead to very long connection times (as long as
17# it requires to make more entropy available). But usually those
18# platforms additionally provide a /dev/urandom device which doesn't
19# block. So, if available, use this one instead. Read the mod_ssl User
20# Manual for more details.
bf912852 21#
d7c7c9e8
ER
22#SSLRandomSeed startup file:/dev/random 512
23#SSLRandomSeed startup file:/dev/urandom 512
24#SSLRandomSeed connect file:/dev/random 512
25#SSLRandomSeed connect file:/dev/urandom 512
bf912852 26
bf912852
MM
27
28#
d7c7c9e8 29# When we also provide SSL we have to listen to the
bf912852
MM
30# standard HTTP port (see above) and to the HTTPS port
31#
d7c7c9e8 32# Note: Configurations that use IPv6 but not IPv4-mapped addresses need two
fd3d5f6a 33# Listen directives: "Listen [::]:443" and "Listen 0.0.0.0:443"
bf912852 34#
d7c7c9e8 35Listen 443
bf912852 36
759ed8ce 37##
38## SSL Global Context
39##
40## All SSL configuration in this context applies both to
41## the main server and all SSL-enabled virtual hosts.
42##
43
44#
45# Some MIME-types for downloading Certificates and CRLs
46#
47AddType application/x-x509-ca-cert .crt
fd3d5f6a 48AddType application/x-pkcs7-crl .crl
759ed8ce 49
50# Pass Phrase Dialog:
51# Configure the pass phrase gathering process.
52# The filtering dialog program (`builtin' is a internal
53# terminal dialog) has to provide the pass phrase on stdout.
54SSLPassPhraseDialog builtin
55
56# Inter-Process Session Cache:
d7c7c9e8 57# Configure the SSL Session Cache: First the mechanism
bf912852 58# to use and second the expiring timeout (in seconds).
90df1208
ER
59#SSLSessionCache dbm:/var/cache/httpd/ssl_scache
60#SSLSessionCache shmcb:/var/run/ssl_scache(512000)
61SSLSessionCache shmcb:/var/cache/httpd/ssl_scache(512000)
d7c7c9e8 62SSLSessionCacheTimeout 300
759ed8ce 63
64# Semaphore:
bf912852 65# Configure the path to the mutual exclusion semaphore the
d7c7c9e8 66# SSL engine uses internally for inter-process synchronization.
90df1208 67SSLMutex file:/var/run/httpd/ssl_mutex
759ed8ce 68
bf912852
MM
69##
70## SSL Virtual Host Context
71##
72
7dd601d9 73<VirtualHost _default_:443>
bf912852 74
d7c7c9e8 75# General setup for the virtual host
bf912852 76DocumentRoot "/home/services/httpd/html"
d7c7c9e8
ER
77ServerName www.example.com:443
78ServerAdmin you@example.com
c1140a1c
ER
79ErrorLog logs/error_log
80TransferLog logs/access_log
bf912852
MM
81
82# SSL Engine Switch:
83# Enable/Disable SSL for this virtual host.
7dd601d9 84SSLEngine on
bf912852
MM
85
86# SSL Cipher Suite:
87# List the ciphers that the client is permitted to negotiate.
88# See the mod_ssl documentation for a complete list.
89SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
90
91# Server Certificate:
92# Point SSLCertificateFile at a PEM encoded certificate. If
93# the certificate is encrypted, then you will be prompted for a
d7c7c9e8
ER
94# pass phrase. Note that a kill -HUP will prompt again. Keep
95# in mind that if you have both an RSA and a DSA certificate you
96# can configure both in parallel (to also allow the use of DSA
97# ciphers, etc.)
bf912852
MM
98SSLCertificateFile /etc/httpd/ssl/server.crt
99#SSLCertificateFile /etc/httpd/ssl/server-dsa.crt
100
101# Server Private Key:
102# If the key is not combined with the certificate, use this
103# directive to point at the key file. Keep in mind that if
104# you've both a RSA and a DSA private key you can configure
105# both in parallel (to also allow the use of DSA ciphers, etc.)
106SSLCertificateKeyFile /etc/httpd/ssl/server.key
107#SSLCertificateKeyFile /etc/httpd/ssl/server-dsa.key
108
109# Server Certificate Chain:
110# Point SSLCertificateChainFile at a file containing the
111# concatenation of PEM encoded CA certificates which form the
112# certificate chain for the server certificate. Alternatively
113# the referenced file can be the same as SSLCertificateFile
114# when the CA certificates are directly appended to the server
115# certificate for convinience.
116#SSLCertificateChainFile /etc/httpd/ssl/ca.crt
117
118# Certificate Authority (CA):
119# Set the CA certificate verification path where to find CA
120# certificates for client authentication or alternatively one
121# huge file containing all of them (file must be PEM encoded)
122# Note: Inside SSLCACertificatePath you need hash symlinks
fd3d5f6a
ER
123# to point to the certificate files. Use the provided
124# Makefile to update the hash symlinks after changes.
bf912852
MM
125#SSLCACertificatePath /etc/httpd/ssl
126#SSLCACertificateFile /etc/httpd/ssl/ca-bundle.crt
127
128# Certificate Revocation Lists (CRL):
129# Set the CA revocation path where to find CA CRLs for client
130# authentication or alternatively one huge file containing all
131# of them (file must be PEM encoded)
132# Note: Inside SSLCARevocationPath you need hash symlinks
fd3d5f6a
ER
133# to point to the certificate files. Use the provided
134# Makefile to update the hash symlinks after changes.
bf912852
MM
135#SSLCARevocationPath /etc/httpd/ssl
136#SSLCARevocationFile /etc/httpd/ssl/ca-bundle.crl
137
138# Client Authentication (Type):
139# Client certificate verification type and depth. Types are
140# none, optional, require and optional_no_ca. Depth is a
141# number which specifies how deeply to verify the certificate
142# issuer chain before deciding the certificate is not valid.
7dd601d9 143#SSLVerifyClient require
144#SSLVerifyDepth 10
145
bf912852
MM
146# Access Control:
147# With SSLRequire you can do per-directory access control based
148# on arbitrary complex boolean expressions containing server
149# variable checks and other lookup directives. The syntax is a
150# mixture between C and Perl. See the mod_ssl documentation
151# for more details.
152#<Location />
fd3d5f6a
ER
153#SSLRequire ( %{SSL_CIPHER} !~ m/^(EXP|NULL)/ \
154# and %{SSL_CLIENT_S_DN_O} eq "Snake Oil, Ltd." \
155# and %{SSL_CLIENT_S_DN_OU} in {"Staff", "CA", "Dev"} \
156# and %{TIME_WDAY} >= 1 and %{TIME_WDAY} <= 5 \
157# and %{TIME_HOUR} >= 8 and %{TIME_HOUR} <= 20 ) \
158# or %{REMOTE_ADDR} =~ m/^192\.76\.162\.[0-9]+$/
bf912852
MM
159#</Location>
160
161# SSL Engine Options:
162# Set various options for the SSL engine.
163# o FakeBasicAuth:
fd3d5f6a
ER
164# Translate the client X.509 into a Basic Authorisation. This means that
165# the standard Auth/DBMAuth methods can be used for access control. The
166# user name is the `one line' version of the client's X.509 certificate.
167# Note that no password is obtained from the user. Every entry in the user
168# file needs this password: `xxj31ZMTZzkVA'.
bf912852 169# o ExportCertData:
fd3d5f6a
ER
170# This exports two additional environment variables: SSL_CLIENT_CERT and
171# SSL_SERVER_CERT. These contain the PEM-encoded certificates of the
172# server (always existing) and the client (only existing when client
173# authentication is used). This can be used to import the certificates
174# into CGI scripts.
bf912852 175# o StdEnvVars:
fd3d5f6a
ER
176# This exports the standard SSL/TLS related `SSL_*' environment variables.
177# Per default this exportation is switched off for performance reasons,
178# because the extraction step is an expensive operation and is usually
179# useless for serving static content. So one usually enables the
180# exportation for CGI and SSI requests only.
bf912852 181# o StrictRequire:
fd3d5f6a
ER
182# This denies access when "SSLRequireSSL" or "SSLRequire" applied even
183# under a "Satisfy any" situation, i.e. when it applies access is denied
184# and no other module can change it.
bf912852 185# o OptRenegotiate:
fd3d5f6a
ER
186# This enables optimized SSL connection renegotiation handling when SSL
187# directives are used in per-directory context.
d7c7c9e8
ER
188#SSLOptions +FakeBasicAuth +ExportCertData +StrictRequire
189<FilesMatch "\.(cgi|shtml|phtml|php)$">
fd3d5f6a 190 SSLOptions +StdEnvVars
d7c7c9e8
ER
191</FilesMatch>
192<Directory "/home/services/httpd/cgi-bin">
fd3d5f6a 193 SSLOptions +StdEnvVars
7dd601d9 194</Directory>
bf912852
MM
195
196# SSL Protocol Adjustments:
197# The safe and default but still SSL/TLS standard compliant shutdown
198# approach is that mod_ssl sends the close notify alert but doesn't wait for
199# the close notify alert from client. When you need a different shutdown
200# approach you can use one of the following variables:
201# o ssl-unclean-shutdown:
fd3d5f6a
ER
202# This forces an unclean shutdown when the connection is closed, i.e. no
203# SSL close notify alert is send or allowed to received. This violates
204# the SSL/TLS standard but is needed for some brain-dead browsers. Use
205# this when you receive I/O errors because of the standard approach where
206# mod_ssl sends the close notify alert.
bf912852 207# o ssl-accurate-shutdown:
fd3d5f6a
ER
208# This forces an accurate shutdown when the connection is closed, i.e. a
209# SSL close notify alert is send and mod_ssl waits for the close notify
210# alert of the client. This is 100% SSL/TLS standard compliant, but in
211# practice often causes hanging connections with brain-dead browsers. Use
212# this only for browsers where you know that their SSL implementation
213# works correctly.
bf912852
MM
214# Notice: Most problems of broken clients are also related to the HTTP
215# keep-alive facility, so you usually additionally want to disable
216# keep-alive for those clients, too. Use variable "nokeepalive" for this.
217# Similarly, one has to force some clients to use HTTP/1.0 to workaround
218# their broken HTTP/1.1 implementation. Use variables "downgrade-1.0" and
219# "force-response-1.0" for this.
d7c7c9e8 220BrowserMatch ".*MSIE.*" \
fd3d5f6a
ER
221 nokeepalive ssl-unclean-shutdown \
222 downgrade-1.0 force-response-1.0
bf912852
MM
223
224# Per-Server Logging:
225# The home of a custom SSL log file. Use this when you want a
226# compact non-error SSL logfile on a virtual host basis.
fd3d5f6a 227CustomLog logs/ssl_request_log "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
7dd601d9 228
d7c7c9e8 229</VirtualHost>
bf912852
MM
230
231</IfModule>
This page took 0.08324 seconds and 4 git commands to generate.