Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. <VirtualHost chatdemo.tk:80>
  2. ServerName chatdemo.tk
  3. Redirect / https://chatdemo.tk/
  4. </VirtualHost>
  5.  
  6. <VirtualHost chatdemo.tk:443>
  7. #SSLEngine on
  8. #SSLCertificateFile /etc/letsencrypt/live/chatdemo.tk/fullchain.pem
  9. #SSLCertificateKeyFile /etc/letsencrypt/live/chatdemo.tk/privkey.pem
  10. #Include /etc/letsencrypt/options-ssl-apache.conf
  11. #SSLCertificateFile /etc/letsencrypt/live/chatdemo.tk/cert.pem
  12. #SSLCertificateKeyFile /etc/letsencrypt/live/chatdemo.tk/privkey.pem
  13. #SSLCertificateChainFile /etc/letsencrypt/live/chatdemo.tk/chain.pem
  14.  
  15. ServerName chatdemo.tk
  16. ServerAlias 86.105.49.157
  17.  
  18. DocumentRoot /var/www/html/chatdemo.tk/public_html/web/
  19. <Directory /var/www/html/chatdemo.tk/public_html/web/>
  20. AllowOverride All
  21. Order Allow,Deny
  22. Allow from All
  23. </Directory>
  24.  
  25. # uncomment the following lines if you install assets as symlinks
  26. # or run into problems when compiling LESS/Sass/CoffeeScript assets
  27. # <Directory /var/www/project>
  28. # Options FollowSymlinks
  29. # </Directory>
  30.  
  31. # ErrorLog /var/log/httpd/chat.log
  32. # CustomLog /var/log/httpd/chat.log combined
  33. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement