Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerName site.loc
  3. DocumentRoot "/media/nestor/ostree/var/www/site.loc"
  4. ErrorLog /opt/lampp/logs/site.loc.error.log
  5. CustomLog /opt/lampp/logs/site.loc.access.log combined
  6. <Directory "/media/nestor/ostree/var/www/site.loc">
  7. AllowOverride All
  8. Order deny,allow
  9. Allow from all
  10. Options Indexes FollowSymLinks
  11. Require all granted
  12. </Directory>
  13. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement