Browse Source

Fix Keberos Docs http://

Issue gh-17879
pull/17382/head
Rob Winch 5 months ago
parent
commit
1b263cfafb
No known key found for this signature in database
  1. 4
      docs/modules/ROOT/pages/servlet/authentication/kerberos/appendix.adoc
  2. 10
      docs/modules/ROOT/pages/servlet/authentication/kerberos/samples.adoc

4
docs/modules/ROOT/pages/servlet/authentication/kerberos/appendix.adoc

@ -201,8 +201,8 @@ This was tested using `Windows Server 2012 R2` @@ -201,8 +201,8 @@ This was tested using `Windows Server 2012 R2`
====
Internet is full of good articles and videos how to setup Windows AD
but these two are quite usefull
http://www.rackspace.com/knowledge_center/article/installing-active-directory-on-windows-server-2012[Rackspace] and
http://social.technet.microsoft.com/wiki/contents/articles/12370.windows-server-2012-set-up-your-first-domain-controller-step-by-step.aspx[Microsoft
https://www.rackspace.com/knowledge_center/article/installing-active-directory-on-windows-server-2012[Rackspace] and
https://social.technet.microsoft.com/wiki/contents/articles/12370.windows-server-2012-set-up-your-first-domain-controller-step-by-step.aspx[Microsoft
Technet].
====

10
docs/modules/ROOT/pages/servlet/authentication/kerberos/samples.adoc

@ -172,7 +172,7 @@ Default application is configured as shown below. @@ -172,7 +172,7 @@ Default application is configured as shown below.
app:
user-principal: user2@EXAMPLE.ORG
keytab-location: /tmp/user2.keytab
access-url: http://neo.example.org:8080/hello
access-url: https://neo.example.org:8080/hello
----
@ -192,8 +192,8 @@ to empty values which disables a use of keytab file. @@ -192,8 +192,8 @@ to empty values which disables a use of keytab file.
If operation is succesfull you should see below output with `user1@EXAMPLE.ORG`.
[source,text]
----
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3">
<html xmlns="https://www.w3.org/1999/xhtml"
xmlns:sec="https://www.thymeleaf.org/thymeleaf-extras-springsecurity3">
<head>
<title>Spring Security Kerberos Example</title>
</head>
@ -212,8 +212,8 @@ $ java -jar sec-client-rest-template-{spring-security-version}.jar @@ -212,8 +212,8 @@ $ java -jar sec-client-rest-template-{spring-security-version}.jar
If operation is succesfull you should see below output with `user2@EXAMPLE.ORG`.
[source,text]
----
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3">
<html xmlns="https://www.w3.org/1999/xhtml"
xmlns:sec="https://www.thymeleaf.org/thymeleaf-extras-springsecurity3">
<head>
<title>Spring Security Kerberos Example</title>
</head>

Loading…
Cancel
Save