You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `metarefresh` module is the preferred method for doing this.
63
-
Please see the [metarefresh documentation](https://github.com/simplesamlphp/simplesamlphp-module-metarefresh/blob/master/docs/simplesamlphp-automated_metadata.md).
63
+
Please see the [metarefresh documentation](metarefresh:simplesamlphp-automated_metadata).
This is a step-by-step guide for creating a custom username/password [authentication source](./simplesamlphp-authsource.md) for SimpleSAMLphp.
4
+
This is a step-by-step guide for creating a custom username/password [authentication source](./simplesamlphp-authsource) for SimpleSAMLphp.
5
5
An authentication source is responsible for authenticating the user, typically by getting a username and password, and looking it up in some sort of database.
6
6
7
7
<!-- {{TOC}} -->
8
8
9
9
Create a custom module
10
10
----------------------
11
11
12
-
All custom code for SimpleSAMLphp should be contained in a [module](./simplesamlphp-modules.md).
12
+
All custom code for SimpleSAMLphp should be contained in a [module](./simplesamlphp-modules).
13
13
This ensures that you can upgrade your SimpleSAMLphp installation without overwriting your own code.
14
14
In this example, we will call the module `mymodule`.
15
15
It will be located under `modules/mymodule`.
@@ -216,7 +216,7 @@ Note that we have updated the username & password to "theconfigusername" and "th
216
216
A more complete example - custom database authentication
The [sqlauth:SQL](../modules/sqlauth/docs/sql.md) authentication source can do simple authentication against SQL databases.
219
+
The [sqlauth:SQL](sqlauth:sql) authentication source can do simple authentication against SQL databases.
220
220
However, in some cases it cannot be used, for example because the database layout is too complex, or because the password validation routines cannot be implemented in SQL.
221
221
What follows is an example of an authentication source that fetches an user from a database, and validates the password using a custom function.
Copy file name to clipboardExpand all lines: docs/simplesamlphp-sp.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -122,7 +122,7 @@ directory.
122
122
If you intend to add your SP to a federation, the procedure for managing trust in federations differ, but the common part is
123
123
that you would need to provide the *SAML 2.0 metadata of your SP*, and register that with the federation administration.
124
124
You will probably be required too to consume the federation metadata periodically. Read more about
125
-
[automated metadata management](https://github.com/simplesamlphp/simplesamlphp-module-metarefresh/blob/master/docs/simplesamlphp-automated_metadata.md) to learn more about that.
125
+
[automated metadata management](metarefresh:simplesamlphp-automated_metadata) to learn more about that.
0 commit comments