Advertisement
KRG-23

default-ssl.conf

Sep 6th, 2017
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 1.65 KB | None | 0 0
  1. SSLPassPhraseDialog  builtin
  2. SSLSessionCache         shmcb:/var/cache/mod_ssl/scache(512000)
  3. SSLSessionCacheTimeout  300
  4. #SSLMutex default
  5. SSLRandomSeed startup file:/dev/urandom  256
  6. SSLRandomSeed connect builtin
  7. SSLCryptoDevice builtin
  8. <VirtualHost *:80>
  9.         DocumentRoot "/srv/rutorrent/home"
  10.         <Directory "/srv/rutorrent/home/">
  11.                 Options Indexes FollowSymLinks
  12.                 AllowOverride All AuthConfig
  13.                 Order allow,deny
  14.                 Allow from all
  15.         AuthType Digest
  16.         AuthName "rutorrent"
  17.         AuthUserFile '/etc/htpasswd'
  18.         Require valid-user
  19.         </Directory>
  20. SCGIMount /krieg 127.0.0.1:19695
  21. </VirtualHost>
  22. <VirtualHost *:443>
  23. Options +Indexes +MultiViews +FollowSymLinks
  24. SSLEngine on
  25.         DocumentRoot "/srv/rutorrent/home"
  26.         <Directory "/srv/rutorrent/home/">
  27.                 Options +Indexes +FollowSymLinks +MultiViews
  28.                 AllowOverride All AuthConfig
  29.                 Order allow,deny
  30.                 Allow from all
  31.         AuthType Digest
  32.         AuthName "rutorrent"
  33.         AuthUserFile '/etc/htpasswd'
  34.         Require valid-user
  35.         </Directory>
  36.         SSLEngine on
  37.         SSLProtocol all -SSLv2
  38.         SSLCipherSuite ALL:!ADH:!EX19695:!SSLv2:RC4+RSA:+HIGH:+MEDIUM:+LOW
  39.         SSLCertificateFile /etc/apache2/ssl/certs/krg-23.com-ssl.pem
  40.         SSLCertificateKeyFile /etc/apache2/ssl/certs/krg-23.com-ssl.key
  41.         SetEnvIf User-Agent ".*MSIE.*" \
  42.                  nokeepalive ssl-unclean-shutdown \
  43.                  downgrade-1.0 force-response-1.0
  44. SCGIMount /krieg 127.0.0.1:19695
  45. </Virtualhost>
  46. SCGIMount /krieg 127.0.0.1:19695
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement