Advertisement
Guest User

Untitled

a guest
Jun 9th, 2020
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <VirtualHost *:443>
  2. ServerAdmin admin@raidlands.de
  3. DocumentRoot /var/www/html
  4. ServerName host.raidlands.de
  5. ServerAlias www.host.raidlands.de
  6. SSLEngine on
  7. SSLCertificateFile /home/ssl/crt.crt
  8. SSLCertificateKeyFile /home/ssl/key.key
  9. <Directory /var/www/html>
  10. AllowOverride All
  11. Options FollowSymlinks
  12. </Directory>
  13. </VirtualHost>
  14.  
  15. <VirtualHost *:80>
  16. ServerName host.raidlands.de
  17. ServerAlias www.host.raidlands.de
  18. Redirect permanent / https://www.host.raidlands.de/
  19. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement