Guest User

Untitled

a guest
Apr 26th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. NameVirtualHost *:8080
  2.  
  3. <VirtualHost *:8080>
  4. DocumentRoot "C:/xampp/htdocs"
  5. ServerName localhost
  6. <Directory "C:/xampp/htdocs">
  7. Require all granted
  8. </Directory>
  9. </VirtualHost>
  10.  
  11.  
  12. <VirtualHost *:8080>
  13. DocumentRoot "D:/Projects/social-network/public"
  14. ServerName social-network.devt
  15. <Directory "D:/Projects/social-network/public">
  16. Options Indexes FollowSymLinks
  17. AllowOverride All
  18. Require all granted
  19. </Directory>
  20. </VirtualHost>
Add Comment
Please, Sign In to add comment