quocvuongdn

#apache: httpd-vhosts.conf

Feb 4th, 2015
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.53 KB | None | 0 0
  1. <VirtualHost *:80>
  2.     DocumentRoot "D:/Workspace/php/moboadmin"
  3.     ServerName admin.mobo
  4.     ServerAlias admin.mobo
  5.     <Directory "D:/Workspace/php/moboadmin">
  6.         Order allow,deny
  7.         Allow from all
  8.     </Directory>
  9. </VirtualHost>
  10.  
  11.  
  12.  
  13. ###
  14.  
  15. <VirtualHost *:80>
  16.   ServerName web.local
  17.   DocumentRoot "D:/workspace/php"
  18.   <Directory "D:/workspace/php">
  19.     Require all granted
  20.     AllowOverride All
  21.     Options Indexes FollowSymLinks
  22.   </Directory>
  23.   #ErrorLog "error.log"
  24.   #CustomLog "access.log"
  25. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment