-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update actions-services.yml with test IDP changes
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,6 +84,35 @@ services: | |
PROFILE_URL_FOR_TESTS: "http://ssp-sp1.local/module.php/core/authenticate.php?as=ssp-hub" | ||
SECURE_COOKIE: "false" | ||
SHOW_SAML_ERRORS: "true" | ||
THEME_USE: "default" | ||
|
||
ssp-idp2.local: | ||
build: . | ||
volumes: | ||
# Utilize custom certs | ||
- ./development/idp2-local/cert:/data/vendor/simplesamlphp/simplesamlphp/cert | ||
|
||
# Utilize custom configs | ||
- ./development/idp2-local/config/authsources.php:/data/vendor/simplesamlphp/simplesamlphp/config/authsources.php | ||
- ./development/idp2-local/config/config.php:/data/vendor/simplesamlphp/simplesamlphp/config/config.php | ||
|
||
# Utilize custom metadata | ||
- ./development/idp2-local/metadata/saml20-idp-hosted.php:/data/vendor/simplesamlphp/simplesamlphp/metadata/saml20-idp-hosted.php | ||
- ./development/idp2-local/metadata/saml20-sp-remote.php:/data/vendor/simplesamlphp/simplesamlphp/metadata/saml20-sp-remote.php | ||
|
||
# Local modules | ||
- ./modules/expirychecker:/data/vendor/simplesamlphp/simplesamlphp/modules/expirychecker | ||
- ./modules/profilereview:/data/vendor/simplesamlphp/simplesamlphp/modules/profilereview | ||
command: /data/run.sh | ||
ports: | ||
- "8086:80" | ||
environment: | ||
ADMIN_EMAIL: "[email protected]" | ||
ADMIN_PASS: "b" | ||
SECRET_SALT: "h57fjemb&dn^nsJFGNjweJ" | ||
IDP_NAME: "IDP 2" | ||
SECURE_COOKIE: "false" | ||
SHOW_SAML_ERRORS: "true" | ||
THEME_USE: "material:material" | ||
|
||
ssp-sp1.local: | ||
|