Advertisement
Guest User

Untitled

a guest
Dec 20th, 2014
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerName 192.168.33.10.xip.io
  3.  
  4. DocumentRoot /vagrant
  5.  
  6. <Directory /vagrant>
  7. Options -Indexes +FollowSymLinks
  8. AllowOverride All
  9. Require all granted
  10. </Directory>
  11.  
  12. ErrorLog ${APACHE_LOG_DIR}/192.168.33.10.xip.io-error.log
  13.  
  14. # Possible values include: debug, info, notice, warn, error, crit,
  15. # alert, emerg.
  16. LogLevel warn
  17.  
  18. CustomLog ${APACHE_LOG_DIR}/192.168.33.10.xip.io-access.log combined
  19.  
  20.  
  21. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement