DaPorkchop

Untitled

Oct 13th, 2016
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <VirtualHost *:80>
  2.  
  3. # Host that will serve this project.
  4. ServerName repo.daporkchop.tk
  5. ServerAdmin you@youremail.com
  6.  
  7. # The location of repo directory.
  8. DocumentRoot /var/www/html/solderrepo/
  9.  
  10. # Important options for solder repo directory.
  11. <Directory /var/www/html/repo>
  12. Options +Indexes +FollowSymLinks
  13. AllowOverride All
  14. Require all granted
  15. </Directory>
  16.  
  17. # Useful logs for debug.
  18. ErrorLog ${APACHE_LOG_DIR}/solderrepo/error.log
  19. CustomLog ${APACHE_LOG_DIR}/solderrepo/access.log combined
  20.  
  21. </VirtualHost>
Add Comment
Please, Sign In to add comment