Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
simplesamlphp
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Perun
Perun ProxyIdP
v1
simplesamlphp
Commits
d5cfb245
Commit
d5cfb245
authored
6 years ago
by
Thijs Kinkhorst
Browse files
Options
Downloads
Patches
Plain Diff
Update required PHP version, add docs on module.enable.
parent
df523ac0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docs/simplesamlphp-install.md
+10
-2
10 additions, 2 deletions
docs/simplesamlphp-install.md
with
10 additions
and
2 deletions
docs/simplesamlphp-install.md
+
10
−
2
View file @
d5cfb245
...
...
@@ -31,7 +31,7 @@ Prerequisites
-------------
*
Some webserver capable of executing PHP scripts.
*
PHP version >= 5.
4
.0.
*
PHP version >= 5.
5
.0.
*
Support for the following PHP extensions:
*
Always required:
`date`
,
`dom`
,
`hash`
,
`libxml`
,
`openssl`
,
`pcre`
,
`SPL`
,
`zlib`
,
`json`
,
`mbstring`
*
When automatically checking for latest versions, and used by some modules:
`cURL`
...
...
@@ -100,7 +100,7 @@ By default, SimpleSAMLphp looks for its configuration in the `config` directory
has some drawbacks, like making it harder to use SimpleSAMLphp as a composer dependency, or to package it for different
operating systems.
However, it is now
possible to specify an alternate location for the configuration directory by setting an environment
It is
possible to specify an alternate location for the configuration directory by setting an environment
variable with this location. This way, the configuration directory doesn't need to be inside the library's directory,
making it easier to manage and to update. The simplest way to set this environment variable is to set it in your web
server's configuration. See the next section for more information.
...
...
@@ -257,6 +257,14 @@ to `disable`.
cd modules/consent
mv enable disable
Alternatively or additionally, you can use the
`module.enable`
setting
in config.php:
'module.enable' => [
'exampleauth' => true, // Setting to TRUE enables.
'saml' => false, // Setting to FALSE disables.
'core' => null, // Unset or NULL uses default for this module.
],
The SimpleSAMLphp installation webpage
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment