Advertisement
Guest User

Untitled

a guest
Jan 20th, 2020
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. ScriptAlias /cgi-bin/ /home/kubastudzinski/public_html/cgi-bin/
  2. AddHandler cgi-script . cgi . pl
  3. <Directory "/home/*/public_html/cgi-bin/">
  4. Options ExecCGI
  5. SetHandler cgi-script
  6. </Directory>
  7.  
  8. <VirtualHost *:80>
  9. ServerName lab039.domlab039.studmat.uni.torun.pl
  10. DocumentRoot "/var/www/html/strona1"
  11. </VirtualHost>
  12.  
  13. <VirtualHost *:80>
  14. ServerName domlab039.studmat.uni.torun.pl
  15. DocumentRoot "/home/kubastudzinski/public_html/strona2/"
  16. </VirtualHost>
  17.  
  18. <VirtualHost *:443>
  19. DocumentRoot /var/www/html
  20. ServerName domlab039.studmat.uni.torun.pl
  21. SSLEngine on
  22. SSLCertificateFile /etc/ca.crt
  23. SSLCertificateKeyFile /etc/ca.key
  24. </VirtualHost>
  25. <Directory "/home/testuser/public_html/cgi-bin">
  26. options ExecCGI
  27. AddHandler cgi-script .cgi .pl
  28. </Directory>
  29.  
  30. <Directory "/home/kubastudzinski/public_html/strona2/">
  31. AllowOverride none
  32. Require all granted
  33. </Directory>
  34.  
  35. <Directory "/var/www/html/strona1">
  36. AllowOverride none
  37. Require all granted
  38. </Directory>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement