1234567891011121314151617181920212223 |
- <VirtualHost *:80>
- ServerName {{ matrix_subdomain }}.{{ item.name }}
-
- Redirect temp / https:
- </VirtualHost>
-
- <VirtualHost *:443>
- ServerName {{ matrix_subdomain }}.{{ item.name }}
-
- SSLEngine On
- DocumentRoot "/var/www/riot"
- DirectoryIndex index.html
- Options -Indexes
- HostnameLookups Off
- LogLevel warn
- ErrorLog /var/log/apache2/matrix.info-error_log
- CustomLog /var/log/apache2/matrix.info-access_log common
-
- ProxyRequests Off
- ProxyPreserveHost On
- ProxyPass /_matrix http:
- ProxyPassReverse /_matrix http:
- </VirtualHost>
|