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
9459b021
Unverified
Commit
9459b021
authored
5 years ago
by
Tim van Dijen
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Update Nginx config
parent
494f4204
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docs/simplesamlphp-install.md
+7
-3
7 additions, 3 deletions
docs/simplesamlphp-install.md
with
7 additions
and
3 deletions
docs/simplesamlphp-install.md
+
7
−
3
View file @
9459b021
...
@@ -27,7 +27,7 @@ Prerequisites
...
@@ -27,7 +27,7 @@ Prerequisites
-------------
-------------
*
A web server capable of executing PHP scripts.
*
A web server capable of executing PHP scripts.
*
PHP version >=
5.5
.0.
*
PHP version >=
7.2
.0.
*
Support for the following PHP extensions:
*
Support for the following PHP extensions:
*
Always required:
`date`
,
`dom`
,
`hash`
,
`libxml`
,
`openssl`
,
`pcre`
,
`SPL`
,
`zlib`
,
`json`
,
`mbstring`
*
Always required:
`date`
,
`dom`
,
`hash`
,
`libxml`
,
`openssl`
,
`pcre`
,
`SPL`
,
`zlib`
,
`json`
,
`mbstring`
*
When automatically checking for latest versions, and used by some modules:
`cURL`
*
When automatically checking for latest versions, and used by some modules:
`cURL`
...
@@ -211,8 +211,12 @@ look like this:
...
@@ -211,8 +211,12 @@ look like this:
location ~ ^(?<prefix>/simplesaml)(?<phpfile>.+?\.php)(?<pathinfo>/.*)?$ {
location ~ ^(?<prefix>/simplesaml)(?<phpfile>.+?\.php)(?<pathinfo>/.*)?$ {
include fastcgi_params;
include fastcgi_params;
fastcgi_pass $fastcgi_pass;
fastcgi_pass $fastcgi_pass;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_FILENAME $document_root$phpfile;
fastcgi_param SCRIPT_NAME /simplesaml$phpfile;
# Must be prepended with the baseurlpath
fastcgi_param SCRIPT_NAME /simplesaml$phpfile;
fastcgi_param PATH_INFO $pathinfo if_not_empty;
}
}
}
}
}
}
...
...
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