Advertisement
DaPorkchop

Untitled

Oct 13th, 2016
176
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 solder.daporkchop.tk
  5. ServerAdmin you@youremail.com
  6.  
  7. # The location of public directory.
  8. DocumentRoot /var/www/html/solder/public/
  9.  
  10. # Important options for solder public directory.
  11. <Directory /var/www/html/solder/public>
  12. Options FollowSymLinks
  13. AllowOverride All
  14. Require all granted
  15. </Directory>
  16.  
  17. # Useful logs for debug.
  18. ErrorLog ${APACHE_LOG_DIR}/solder/error.log
  19. CustomLog ${APACHE_LOG_DIR}/solder/access.log combined
  20.  
  21. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement