Guest User

Untitled

a guest
Jun 21st, 2018
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Virtual Hosts
  2. #
  3. <VirtualHost *:80>
  4.   ServerName localhost
  5.   ServerAlias localhost
  6.   DocumentRoot "${INSTALL_DIR}/www"
  7.   <Directory "${INSTALL_DIR}/www/">
  8.     Options +Indexes +Includes +FollowSymLinks +MultiViews
  9.     AllowOverride All
  10.     Require all granted
  11.   </Directory>
  12. </VirtualHost>
Add Comment
Please, Sign In to add comment