Advertisement
Guest User

Untitled

a guest
Feb 20th, 2020
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. Here is an example of my config files:
  2.  
  3. site1.co.uk.conf
  4.  
  5. <VirtualHost *:80>
  6. ServerAdmin email@site1.co.uk
  7. ServerName site1.co.uk
  8. ServerAlias www.site1.co.uk
  9. DocumentRoot /var/www/site1.co.uk/www
  10. ErrorLog ${APACHELOGDIR}/error.log
  11. CustomLog ${APACHELOGDIR}/access.log combined
  12. </VirtualHost>
  13.  
  14. site2.uk.conf
  15.  
  16. <VirtualHost *:80>
  17. ServerAdmin email@site2.uk
  18. ServerName site2.uk
  19. ServerAlias www.site2.uk
  20. DocumentRoot /var/www/site2.uk/www
  21. ErrorLog ${APACHELOGDIR}/error.log
  22. CustomLog ${APACHELOGDIR}/access.log combined
  23. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement