Browse Source

Fix Keberos Docs http://

Issue gh-17879
Rob Winch 2 weeks ago
parent
commit
1b263cfafb

+ 2 - 2
docs/modules/ROOT/pages/servlet/authentication/kerberos/appendix.adoc

@@ -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
 Internet is full of good articles and videos how to setup Windows AD
 but these two are quite usefull
 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].
 Technet].
 ====
 ====
 
 

+ 5 - 5
docs/modules/ROOT/pages/servlet/authentication/kerberos/samples.adoc

@@ -172,7 +172,7 @@ Default application is configured as shown below.
 app:
 app:
     user-principal: user2@EXAMPLE.ORG
     user-principal: user2@EXAMPLE.ORG
     keytab-location: /tmp/user2.keytab
     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.
 If operation is succesfull you should see below output with `user1@EXAMPLE.ORG`.
 If operation is succesfull you should see below output with `user1@EXAMPLE.ORG`.
 [source,text]
 [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>
   <head>
     <title>Spring Security Kerberos Example</title>
     <title>Spring Security Kerberos Example</title>
   </head>
   </head>
@@ -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`.
 If operation is succesfull you should see below output with `user2@EXAMPLE.ORG`.
 [source,text]
 [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>
   <head>
     <title>Spring Security Kerberos Example</title>
     <title>Spring Security Kerberos Example</title>
   </head>
   </head>