Guest User

Untitled

a guest
Oct 15th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerAdmin admin@domain.xyz
  3. DocumentRoot /var/www/html/folder_name_site/
  4. ServerName domain.xyz
  5. ServerAlias www.domain.xyz
  6.  
  7. <Directory /var/www/html/folder_name_site/>
  8. Options Indexes FollowSymLinks MultiViews
  9. AllowOverride All
  10. Order allow,deny
  11. allow from all
  12. </Directory>
  13.  
  14. ErrorLog ${APACHE_LOG_DIR}/error.log
  15. CustomLog ${APACHE_LOG_DIR}/access.log combined
  16. </VirtualHost>
Add Comment
Please, Sign In to add comment