From e964f29e48d45de630bf07b9522688591c1a53e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Schneider?= Date: Fri, 6 Sep 2013 15:11:39 +0200 Subject: [PATCH] simplesamlphp: switch to https and full path for baseconfig --- .../simplesamlphp/config/authsources.php | 5 +++++ drupal/simplesamlphp_auth/simplesamlphp/config/config.php | 7 ++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/drupal/simplesamlphp_auth/simplesamlphp/config/authsources.php b/drupal/simplesamlphp_auth/simplesamlphp/config/authsources.php index ad67059..f24f4bf 100644 --- a/drupal/simplesamlphp_auth/simplesamlphp/config/authsources.php +++ b/drupal/simplesamlphp_auth/simplesamlphp/config/authsources.php @@ -33,6 +33,11 @@ $config = array( // Can be NULL/unset, in which case a builtin discovery service will be used. 'discoURL' => NULL, + // 'privatekey' => 'server.pem', + // 'certificate' => 'server.crt', + + // 'ProtocolBinding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Artifact', + 'NameIDFormat' => 'urn:oasis:names:tc:SAML:2.0:nameid-format:persistent', ), diff --git a/drupal/simplesamlphp_auth/simplesamlphp/config/config.php b/drupal/simplesamlphp_auth/simplesamlphp/config/config.php index 122696b..8188ca3 100644 --- a/drupal/simplesamlphp_auth/simplesamlphp/config/config.php +++ b/drupal/simplesamlphp_auth/simplesamlphp/config/config.php @@ -22,7 +22,12 @@ $config = array ( * external url, no matter where you come from (direct access or via the * reverse proxy). */ - 'baseurlpath' => 'simplesamlphp/', + // prod + 'baseurlpath' => 'https://www.montpellier-agglo.com/simplesamlphp/', + // recette + // 'baseurlpath' => 'https://www-test.entrouvert.montpellier-agglo.com/simplesamlphp/', + // dev + // 'baseurlpath' => 'simplesamlphp/', 'certdir' => 'cert/', 'loggingdir' => 'log/', 'datadir' => 'data/',