Skip to content
Snippets Groups Projects
Select Git revision
  • a75cf5a8062bde1b7afac806b21ec312679e1b04
  • main default
  • full_migration
  • v1.0.9 protected
  • v1.0.8 protected
  • v1.0.7 protected
  • v1.0.6 protected
  • v1.0.5 protected
  • v1.0.4 protected
  • v1.0.3 protected
  • v1.0.2 protected
  • v1.0.1 protected
  • v1.0 protected
13 results

changelog_v1.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    To find the state of this project's repository at the time of any of these versions, check out the tags.
    nginx-snippet.conf 814 B
    more_clear_input_headers Rwthmatrikelnummer Shib-Session-Index Shib-Session-Id Shib-Identity-Provider Shib-Handler Shib-Application-Id Affiliation Shib-Authentication-Instant Shib-Authncontext-Class Entitlement; # add other headers here against spoofing
    
    location  / {
        shib_request /shibauthorizer;
        shib_request_use_headers on;
        shib_request_set $shib_matrikelnr $upstream_http_Rwthmatrikelnummer;
        proxy_set_header Host $host;
        proxy_pass http://unix:/run/nginx/wahlsystem; # change this
    }
    
    location = /shibauthorizer {
        internal;
        include fastcgi_params;
        fastcgi_pass unix:/run/shibboleth/shibauthorizer.sock;
    }
    
    location /Shibboleth.sso {
        include fastcgi_params;
        fastcgi_pass unix:/run/shibboleth/shibresponder.sock;
    }
    
    location /shibboleth-sp {
        alias /etc/shibboleth/;
    }