12345678910111213141516171819202122 |
- <VirtualHost *:80>
- DocumentRoot /app/code
- ErrorLog ${APACHE_LOG_DIR}/error.log
- CustomLog ${APACHE_LOG_DIR}/access.log combined
- <Directory /app/code/>
- Options +FollowSymLinks
- AllowOverride All
- Require all granted
- </Directory>
- # some directories must be protected
- <Directory /app/code/wp-content>
- Options -FollowSymLinks
- AllowOverride None
- <IfModule mod_php5.c>
- php_admin_flag engine off
- </IfModule>
- </Directory>
- </VirtualHost>
|