Change comment:
Added documentation for basic auth
Summary
-
Page properties (2 modified, 0 added, 0 removed)
Details
- Page properties
-
- Author
-
... ... @@ -1,1 +1,1 @@ 1 -XWiki. ThomasMortagne1 +XWiki.VincentMassol - Content
-
... ... @@ -12,6 +12,18 @@ 12 12 13 13 Form authentication is the default way to get authenticated within a Wiki. It requires a user and a password. 14 14 15 += Basic Authentication = 16 + 17 +XWiki supports [basic access authentication>http://en.wikipedia.org/wiki/Basic_access_authentication], a method designed to allow a Web browser, or other client program, to provide credentials - in the form of a user name and password - when making a request. You can get authenticated against an XWiki server with the basic authentication protocol using the following URL scheme: 18 + 19 +{{code}} 20 +http://username:p[email protected]/xwiki/bin/view/Main/WebHome?basicauth=1 21 +{{/code}} 22 + 23 +{{warning}} 24 +Be careful that if you use the ##HTTP## protocol your password will be sent in clear over the network and is thus very unsafe. When using Basic Authentication you should make sure your wiki is configured to use ##HTTPS##. 25 +{{/warning}} 26 + 15 15 = LDAP Authentication = 16 16 17 17 {{warning}}