Advertisement
Guest User

Untitled

a guest
Aug 27th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <VirtualHost *:80>
  2.  
  3.  
  4. ServerName www.admin.domain.store
  5.  
  6. ServerAdmin webmaster@domain.store
  7.  
  8. # Change the paths below to the project document root such as /var/www/project1.
  9.  
  10. DocumentRoot /var/www/adminProject/public
  11.  
  12. <Directory /var/www/adminProject/public>
  13. Options -Indexes +FollowSymLinks
  14. AllowOverride All
  15. Require all granted
  16. </Directory>
  17.  
  18. # Set Default Log Paths
  19.  
  20. ErrorLog ${APACHE_LOG_DIR}/error.log
  21. CustomLog ${APACHE_LOG_DIR}/access.log combined
  22.  
  23. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement