1234567891011121314151617181920212223 |
- <VirtualHost *:8000>
- 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>
- DirectoryIndex Off
- Options -FollowSymLinks
- AllowOverride None
- <IfModule mod_php5.c>
- php_admin_flag engine off
- </IfModule>
- </Directory>
- </VirtualHost>
|