Advertisement
Guest User

Untitled

a guest
Sep 8th, 2017
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. Keytab name: FILE:/etc/apache2/Apache-Krb.keytab
  2. KVNO Timestamp Principal
  3. ---- ------------------- ------------------------------------------------------
  4. 4 01.01.1970 07:00:00 HTTP/Apache-Krb.corp.domain@CORP.DOMAIN.RU (des-cbc-crc)
  5. 4 01.01.1970 07:00:00 HTTP/Apache-Krb.corp.domain@CORP.DOMAIN.RU (des-cbc-md5)
  6. 4 01.01.1970 07:00:00 HTTP/Apache-Krb.corp.domain@CORP.DOMAIN.RU (arcfour-hmac)
  7. 4 01.01.1970 07:00:00 HTTP/Apache-Krb.corp.domain@CORP.DOMAIN.RU (aes256-cts-hmac-sha1-96)
  8. 4 01.01.1970 07:00:00 HTTP/Apache-Krb.corp.domain@CORP.DOMAIN.RU (aes128-cts-hmac-sha1-96)
  9. 4 01.01.1970 07:00:00 HTTP/Apache-Krb.corp.domain@CORP.DOMAIN.RU (des-cbc-crc)
  10. 4 01.01.1970 07:00:00 HTTP/Apache-Krb.corp.domain@CORP.DOMAIN.RU (des-cbc-md5)
  11. 4 01.01.1970 07:00:00 HTTP/Apache-Krb.corp.domain@CORP.DOMAIN.RU (arcfour-hmac)
  12. 4 01.01.1970 07:00:00 HTTP/Apache-Krb.corp.domain@CORP.DOMAIN.RU (aes256-cts-hmac-sha1-96)
  13. 4 01.01.1970 07:00:00 HTTP/Apache-Krb.corp.domain@CORP.DOMAIN.RU (aes128-cts-hmac-sha1-96)
  14.  
  15. Alias /icingaweb2 "/usr/share/icingaweb2/public"
  16.  
  17. AuthType Kerberos
  18. AuthName "PAM authentication"
  19. Krb5Keytab /etc/apache2/Apache-Krb.keytab
  20. KrbAuthRealms CORP.DOMAIN.RU
  21. KrbMethodK5Passwd on
  22. Require pam-account apache2-icingaweb2
  23.  
  24. Options SymLinksIfOwnerMatch
  25.  
  26. AllowOverride None
  27.  
  28. SetEnv ICINGAWEB_CONFIGDIR "/etc/icingaweb2"
  29.  
  30.  
  31. RewriteEngine on
  32. RewriteBase /icingaweb2/
  33. RewriteCond %{REQUEST_FILENAME} -s [OR]
  34. RewriteCond %{REQUEST_FILENAME} -l [OR]
  35. RewriteCond %{REQUEST_FILENAME} -d
  36. RewriteRule ^.*$ - [NC,L]
  37. RewriteRule ^.*$ index.php [NC,L]
  38.  
  39. DirectoryIndex error_norewrite.html
  40. ErrorDocument 404 /error_norewrite.html
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement