Ingen beskrivning
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

etc_apache2_sites-available_roundcube.j2 917B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <VirtualHost *:80>
  2. ServerName {{ webmail_domain }}
  3. Redirect permanent / https://{{ webmail_domain }}/
  4. </VirtualHost>
  5. <VirtualHost *:443>
  6. ServerName {{ webmail_domain }}
  7. SSLEngine On
  8. DocumentRoot /var/www/roundcube
  9. Options -Indexes
  10. <Directory /var/www/roundcube>
  11. AllowOverride All
  12. Require all granted
  13. DirectoryIndex index.php
  14. </Directory>
  15. <Directory /opt/roundcube/config>
  16. AllowOverride None
  17. Require all denied
  18. </Directory>
  19. <Directory /opt/roundcube/temp>
  20. AllowOverride None
  21. Require all denied
  22. </Directory>
  23. <Directory /opt/roundcube/logs>
  24. AllowOverride None
  25. Require all denied
  26. </Directory>
  27. LogLevel warn
  28. ErrorLog /var/log/apache2/roundcube.info-error_log
  29. CustomLog /var/log/apache2/roundcube.info-access_log common
  30. </VirtualHost>