Advertisement
Queses

Virtual Host Example #qss #vhost #apache

Aug 22nd, 2017
491
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <VirtualHost *:80}>
  2.     ServerName example.com
  3.     ErrorLog logs/example.error.log
  4.     DocumentRoot C:/Files/www/example
  5.     <Directory "C:/Files/www/example">
  6.         Options Indexes
  7.         AllowOverride All
  8.         ## Optional:
  9.         # Options Includes
  10.         # Require all granted
  11.     </Directory>
  12.     ## Optional:
  13.     # CustomLog logs/example.access.log common
  14.     # ServerAdmin example@mail.com
  15.     # ServerAlias www.example.com
  16. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement