No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

etc_apache2_sites-available_owncloud.j2 704B

1234567891011121314151617181920212223
  1. NameVirtualHost *:443
  2. <VirtualHost *:443>
  3. ServerName {{ owncloud_domain }}
  4. SSLEngine on
  5. SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP
  6. SSLCertificateFile /etc/ssl/certs/wildcard_public_cert.crt
  7. SSLCertificateKeyFile /etc/ssl/private/wildcard_private.key
  8. SSLCACertificateFile /etc/ssl/certs/wildcard_ca.pem
  9. DocumentRoot /var/www/owncloud
  10. ErrorLog /var/log/apache2/owncloud.info-error_log
  11. CustomLog /var/log/apache2/owncloud.info-access_log common
  12. <Directory /var/www/owncloud>
  13. AllowOverride All
  14. Order allow,deny
  15. allow from all
  16. </Directory>
  17. </VirtualHost>