Advertisement
Guest User

Untitled

a guest
Dec 17th, 2017
67
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. DocumentRoot /var/www/html/minerwatcher/public
  3. ServerName miners.zone
  4.  
  5. <Directory /var/www/html/minerwatcher/>
  6. AllowOverride All
  7. </Directory>
  8. </VirtualHost>
  9.  
  10. <VirtualHost *:443>
  11. SSLEngine on
  12.  
  13. SSLCertificateFile /var/www/html/miners_zone.crt
  14. SSLCertificateKeyFile /var/www/html/server.key
  15. SSLCertificateChainFile /var/www/html/miners_zone.ca-bundle
  16.  
  17. DocumentRoot /var/www/html/minerwatcher/public
  18. ServerName miners.zone
  19.  
  20. <Directory /var/www/html/minerwatcher/>
  21. AllowOverride All
  22. </Directory>
  23. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement