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