Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

etc_apache2_sites-available_blog.j2 568B

1234567891011121314151617181920212223
  1. <VirtualHost *:80>
  2. ServerName {{ item.name }}
  3. ServerAlias www.{{ item.name }}
  4. Redirect temp / https://www.{{ item.name }}/
  5. </VirtualHost>
  6. <VirtualHost *:443>
  7. ServerName {{ item.name }}
  8. Redirect temp / https://www.{{ item.name }}/
  9. </VirtualHost>
  10. <VirtualHost *:443>
  11. ServerAlias www.{{ item.name }}
  12. SSLEngine On
  13. DocumentRoot "{{ item.doc_root }}"
  14. DirectoryIndex index.html
  15. Options -Indexes
  16. HostnameLookups Off
  17. php_admin_flag engine On
  18. </VirtualHost>