Advertisement
Guest User

Untitled

a guest
Jan 17th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerName localhost
  3.  
  4. DocumentRoot /media/sf_coursVM/my-project/public
  5. <Directory /media/sf_coursVM/my-project/public>
  6. AllowOverride All
  7. Order Allow,Deny
  8. Allow from All
  9. </Directory>
  10.  
  11. # uncomment the following lines if you install assets as symlinks
  12. # or run into problems when compiling LESS/Sass/CoffeeScript assets
  13. # <Directory /var/www/project>
  14. # Options FollowSymlinks
  15. # </Directory>
  16.  
  17. ErrorLog /var/log/apache2/project_error.log
  18. CustomLog /var/log/apache2/project_access.log combined
  19. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement