Advertisement
Guest User

Untitled

a guest
Dec 4th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.85 KB | None | 0 0
  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 detailing information about these
  5. # directives see <URL:http://httpd.apache.org/docs/2.2/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. #
  37. Listen 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. #
  47. # Some MIME-types for downloading Certificates and CRLs
  48. #
  49. AddType application/x-x509-ca-cert .crt
  50. AddType application/x-pkcs7-crl .crl
  51.  
  52. # Pass Phrase Dialog:
  53. # Configure the pass phrase gathering process.
  54. # The filtering dialog program (`builtin' is a internal
  55. # terminal dialog) has to provide the pass phrase on stdout.
  56. SSLPassPhraseDialog builtin
  57.  
  58. # Inter-Process Session Cache:
  59. # Configure the SSL Session Cache: First the mechanism
  60. # to use and second the expiring timeout (in seconds).
  61. #SSLSessionCache shmcb:logs/ssl_scache(512000)
  62. SSLSessionCache dbm:logs/ssl.scache
  63. SSLSessionCacheTimeout 300
  64.  
  65. # Semaphore:
  66. # Configure the path to the mutual exclusion semaphore the
  67. # SSL engine uses internally for inter-process synchronization.
  68. SSLMutex default
  69.  
  70. ##
  71. ## SSL Virtual Host Context
  72. ##
  73.  
  74. <VirtualHost _default_:443>
  75. # General setup for the virtual host
  76. DocumentRoot "C:/xampp/htdocs"
  77.  
  78. ServerName www.kenpleranreborn.com
  79. ServerAdmin admin@localhost
  80.  
  81. ErrorLog logs/error.log
  82. <IfModule log_config_module>
  83. CustomLog logs/access.log combined
  84. </IfModule>
  85.  
  86. # SSL Engine Switch:
  87. # Enable/Disable SSL for this virtual host.
  88. SSLEngine on
  89.  
  90. # SSL Cipher Suite:
  91. # List the ciphers that the client is permitted to negotiate.
  92. # See the mod_ssl documentation for a complete list.
  93. SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
  94.  
  95. # Server Certificate:
  96. # Point SSLCertificateFile at a PEM encoded certificate. If
  97. # the certificate is encrypted, then you will be prompted for a
  98. # pass phrase. Note that a kill -HUP will prompt again. Keep
  99. # in mind that if you have both an RSA and a DSA certificate you
  100. # can configure both in parallel (to also allow the use of DSA
  101. # ciphers, etc.)
  102. #SSLCertificateFile conf/ssl.crt/snakeoil-rsa.crt
  103. #SSLCertificateFile conf/ssl.crt/snakeoil-dsa.crt
  104. SSLCertificateFile conf/ssl.crt/kenpleranreborn_com.crt
  105.  
  106. # Server Private Key:
  107. # If the key is not combined with the certificate, use this
  108. # directive to point at the key file. Keep in mind that if
  109. # you've both a RSA and a DSA private key you can configure
  110. # both in parallel (to also allow the use of DSA ciphers, etc.)
  111. #SSLCertificateKeyFile conf/ssl.key/snakeoil-rsa.key
  112. #SSLCertificateKeyFile conf/ssl.key/snakeoil-dsa.key
  113. SSLCertificateKeyFile conf/ssl.key/kenpleranreborn_com.key
  114. # Server Certificate Chain:
  115. # Point SSLCertificateChainFile at a file containing the
  116. # concatenation of PEM encoded CA certificates which form the
  117. # certificate chain for the server certificate. Alternatively
  118. # the referenced file can be the same as SSLCertificateFile
  119. # when the CA certificates are directly appended to the server
  120. # certificate for convinience.
  121. SSLCertificateChainFile conf/ssl.crt/CA_Certificate_file.crt
  122.  
  123. # Certificate Authority (CA):
  124. # Set the CA certificate verification path where to find CA
  125. # certificates for client authentication or alternatively one
  126. # huge file containing all of them (file must be PEM encoded)
  127. # Note: Inside SSLCACertificatePath you need hash symlinks
  128. # to point to the certificate files. Use the provided
  129. # Makefile to update the hash symlinks after changes.
  130. #SSLCACertificatePath conf/ssl.crt
  131. #SSLCACertificateFile conf/ssl.crt/ca-bundle.crt
  132.  
  133. # Certificate Revocation Lists (CRL):
  134. # Set the CA revocation path where to find CA CRLs for client
  135. # authentication or alternatively one huge file containing all
  136. # of them (file must be PEM encoded)
  137. # Note: Inside SSLCARevocationPath you need hash symlinks
  138. # to point to the certificate files. Use the provided
  139. # Makefile to update the hash symlinks after changes.
  140. #SSLCARevocationPath conf/ssl.crl
  141. #SSLCARevocationFile conf/ssl.crl/ca-bundle.crl
  142.  
  143. # Client Authentication (Type):
  144. # Client certificate verification type and depth. Types are
  145. # none, optional, require and optional_no_ca. Depth is a
  146. # number which specifies how deeply to verify the certificate
  147. # issuer chain before deciding the certificate is not valid.
  148. #SSLVerifyClient require
  149. #SSLVerifyDepth 10
  150.  
  151. # Access Control:
  152. # With SSLRequire you can do per-directory access control based
  153. # on arbitrary complex boolean expressions containing server
  154. # variable checks and other lookup directives. The syntax is a
  155. # mixture between C and Perl. See the mod_ssl documentation
  156. # for more details.
  157. <Location />
  158. #SSLRequire ( %{SSL_CIPHER} !~ m/^(EXP|NULL)/ \
  159. # and %{SSL_CLIENT_S_DN_O} eq "Snake Oil, Ltd." \
  160. # and %{SSL_CLIENT_S_DN_OU} in {"Staff", "CA", "Dev"} \
  161. # and %{TIME_WDAY} >= 1 and %{TIME_WDAY} <= 5 \
  162. # and %{TIME_HOUR} >= 8 and %{TIME_HOUR} <= 20 ) \
  163. # or %{REMOTE_ADDR} =~ m/^192\.76\.162\.[0-9]+$/
  164. </Location>
  165.  
  166. # SSL Engine Options:
  167. # Set various options for the SSL engine.
  168. # o FakeBasicAuth:
  169. # Translate the client X.509 into a Basic Authorisation. This means that
  170. # the standard Auth/DBMAuth methods can be used for access control. The
  171. # user name is the `one line' version of the client's X.509 certificate.
  172. # Note that no password is obtained from the user. Every entry in the user
  173. # file needs this password: `xxj31ZMTZzkVA'.
  174. # o ExportCertData:
  175. # This exports two additional environment variables: SSL_CLIENT_CERT and
  176. # SSL_SERVER_CERT. These contain the PEM-encoded certificates of the
  177. # server (always existing) and the client (only existing when client
  178. # authentication is used). This can be used to import the certificates
  179. # into CGI scripts.
  180. # o StdEnvVars:
  181. # This exports the standard SSL/TLS related `SSL_*' environment variables.
  182. # Per default this exportation is switched off for performance reasons,
  183. # because the extraction step is an expensive operation and is usually
  184. # useless for serving static content. So one usually enables the
  185. # exportation for CGI and SSI requests only.
  186. # o StrictRequire:
  187. # This denies access when "SSLRequireSSL" or "SSLRequire" applied even
  188. # under a "Satisfy any" situation, i.e. when it applies access is denied
  189. # and no other module can change it.
  190. # o OptRenegotiate:
  191. # This enables optimized SSL connection renegotiation handling when SSL
  192. # directives are used in per-directory context.
  193. #SSLOptions +FakeBasicAuth +ExportCertData +StrictRequire
  194. <FilesMatch "\.(cgi|shtml|phtml|php|php5|php4|php3)$">
  195. SSLOptions +StdEnvVars
  196. </FilesMatch>
  197. <Directory "C:/xampp/apache/cgi-bin">
  198. SSLOptions +StdEnvVars
  199. </Directory>
  200.  
  201. # SSL Protocol Adjustments:
  202. # The safe and default but still SSL/TLS standard compliant shutdown
  203. # approach is that mod_ssl sends the close notify alert but doesn't wait for
  204. # the close notify alert from client. When you need a different shutdown
  205. # approach you can use one of the following variables:
  206. # o ssl-unclean-shutdown:
  207. # This forces an unclean shutdown when the connection is closed, i.e. no
  208. # SSL close notify alert is send or allowed to received. This violates
  209. # the SSL/TLS standard but is needed for some brain-dead browsers. Use
  210. # this when you receive I/O errors because of the standard approach where
  211. # mod_ssl sends the close notify alert.
  212. # o ssl-accurate-shutdown:
  213. # This forces an accurate shutdown when the connection is closed, i.e. a
  214. # SSL close notify alert is send and mod_ssl waits for the close notify
  215. # alert of the client. This is 100% SSL/TLS standard compliant, but in
  216. # practice often causes hanging connections with brain-dead browsers. Use
  217. # this only for browsers where you know that their SSL implementation
  218. # works correctly.
  219. # Notice: Most problems of broken clients are also related to the HTTP
  220. # keep-alive facility, so you usually additionally want to disable
  221. # keep-alive for those clients, too. Use variable "nokeepalive" for this.
  222. # Similarly, one has to force some clients to use HTTP/1.0 to workaround
  223. # their broken HTTP/1.1 implementation. Use variables "downgrade-1.0" and
  224. # "force-response-1.0" for this.
  225. <IfModule setenvif_module>
  226. BrowserMatch ".*MSIE.*" \
  227. nokeepalive ssl-unclean-shutdown \
  228. downgrade-1.0 force-response-1.0
  229. </IfModule>
  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.
  234. <IfModule log_config_module>
  235. CustomLog logs/ssl_request.log \
  236. "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
  237. </IfModule>
  238. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement