1234567891011121314151617 |
- <VirtualHost *:80>
- ServerName {{ item.name }}
- ServerAlias www.{{ item.name }}
-
- Redirect permanent / https://{{ item.name }}/
- </VirtualHost>
-
- <VirtualHost *:443>
- ServerName {{ item.name }}
- ServerAlias www.{{ item.name }}
-
- SSLEngine On
- DocumentRoot "{{ item.doc_root }}"
- DirectoryIndex index.html
- Options -Indexes
- HostnameLookups Off
- </VirtualHost>
|