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_selfoss.j2 679B

12345678910111213141516171819202122
  1. <VirtualHost *:80>
  2. ServerName {{ selfoss_subdomain }}.{{ item.name }}
  3. Redirect temp / https://{{ selfoss_subdomain }}.{{ item.name }}/
  4. </VirtualHost>
  5. <VirtualHost *:443>
  6. ServerName {{ selfoss_subdomain }}.{{ item.name }}
  7. SSLEngine On
  8. DocumentRoot /var/www/selfoss
  9. Options -Indexes
  10. LogLevel warn
  11. ErrorLog /var/log/apache2/selfoss.info-error_log
  12. CustomLog /var/log/apache2/selfoss.info-access_log common
  13. <Directory /var/www/selfoss>
  14. AllowOverride All
  15. Require all granted
  16. DirectoryIndex index.php
  17. </Directory>
  18. </VirtualHost>