Advertisement
Guest User

httpd-vhosts.conf

a guest
Jul 11th, 2014
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerAdmin [email protected]
  3. DocumentRoot "/srv/http/test1.ru/public_html"
  4. ServerName test1.ru
  5. ServerAlias www.test1.ru
  6. ErrorLog "/srv/http/test1.ru/error_log"
  7. CustomLog "/srv/http/test1.ru/access_log" common
  8. </VirtualHost>
  9.  
  10. <VirtualHost *:80>
  11. ServerAdmin [email protected]
  12. DocumentRoot "/srv/http/localhost/public_html"
  13. ServerName localhost
  14. ErrorLog "/srv/http/localhost/error_log"
  15. CustomLog "/srv/http/localhost/access_log" common
  16. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement