source: main/adopters/uset/trunk/src/main/reverse_proxy/extra/httpd-ssl.conf @ 10498

Last change on this file since 10498 was 10498, checked in by Paul Leo, 7 years ago

Newer version of openssl with Apach24

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