Skip to content
Snippets Groups Projects
Unverified Commit 3c3f5ee2 authored by David Beitey's avatar David Beitey Committed by GitHub
Browse files

Add /Shibboleth.sso to example

parent b441df08
No related branches found
No related tags found
No related merge requests found
......@@ -154,17 +154,23 @@ For full details about configuring the Nginx/Shibboleth environment,
see the documentation at
https://github.com/nginx-shib/nginx-http-shibboleth/blob/master/CONFIG.rst.
An example consists of the following:
An example `server {}` block consists of the following:
.. code-block:: nginx
# FastCGI authorizer for Shibboleth Auth Request module
#FastCGI authorizer for Auth Request module
location = /shibauthorizer {
internal;
include fastcgi_params;
fastcgi_pass unix:/opt/shibboleth/shibauthorizer.sock;
}
#FastCGI responder
location /Shibboleth.sso {
include fastcgi_params;
fastcgi_pass unix:/opt/shibboleth/shibresponder.sock;
}
# Using the ``shib_request_set`` directive, we can introduce attributes as
# environment variables for the backend application. In this example, we
# set ``fastcgi_param`` but this could be any type of Nginx backend that
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment