apache2-wordpress.conf 525 B

1234567891011121314151617181920212223
  1. <VirtualHost *:8000>
  2. DocumentRoot /app/code
  3. ErrorLog "|/bin/cat"
  4. CustomLog "|/bin/cat" combined
  5. <Directory /app/code/>
  6. Options +FollowSymLinks
  7. AllowOverride All
  8. Require all granted
  9. </Directory>
  10. # some directories must be protected
  11. <Directory /app/code/wp-content>
  12. DirectoryIndex Off
  13. Options -FollowSymLinks
  14. AllowOverride None
  15. <IfModule mod_php5.c>
  16. php_admin_flag engine off
  17. </IfModule>
  18. </Directory>
  19. </VirtualHost>