Advertisement
Guest User

Untitled

a guest
Oct 11th, 2012
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. # If this is not set to valid DNS name for your host, server-generated
  2. # redirections will not work. See also the UseCanonicalName directive.
  3. #
  4. # If your host doesn't have a registered DNS name, enter its IP address here.
  5. # You will have to access it by its address anyway, and this will make
  6. # redirections work in a sensible way.
  7. #
  8. ServerName www.domain.com
  9.  
  10. #
  11. # VirtualHost example:
  12. # Almost any Apache directive may go into a VirtualHost container.
  13. # The first VirtualHost section is used for requests without a known
  14. # server name.
  15. #
  16. <VirtualHost *:80>
  17. ServerAdmin test@test.domain.com
  18. DocumentRoot /www/docs/test.domain.com
  19. ServerName test.domain.com
  20. ErrorLog logs/test.domain.com-error_log
  21. CustomLog logs/test.domain.com-access_log common
  22. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement