12345678910111213141516171819202122232425262728293031 |
- {% if ansible_prolog -%}
- {% from 'templates/ansible/prolog.j2' import prolog with context %}
- {{ prolog() }}
- {% endif -%}
- # Apache vhost for PHP system checks
- <VirtualHost *:80>
- ServerName {{ phpsyscheck_vhostname }}
- DocumentRoot /etc/php5/syscheck.d
- DirectoryIndex index.php
- <Location />
- AuthType basic
- AuthName "Restricted Access"
- AuthUserFile /etc/apache2/auth_admin
- Require valid-user
- </Location>
- <Directory /etc/php5/syscheck.d>
- Options None
- AllowOverride None
- Order allow,deny
- Allow from all
- </Directory>
- LogLevel warn
- CustomLog ${APACHE_LOG_DIR}/sys.access.log combined
- ErrorLog ${APACHE_LOG_DIR}/sys.error.log
- </VirtualHost>
|