Nav apraksta
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

etc_apache2_sites-available_blog.j2 445B

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