Changed name to be able to distinguish easily

This commit is contained in:
Roland Hedberg
2010-07-27 21:45:48 +02:00
parent 6cfa4a8fa0
commit f92e4847f1
3 changed files with 3 additions and 3 deletions

View File

@@ -177,7 +177,7 @@ def application(environ, start_response):
from repoze.who.config import make_middleware_with_config
APP_WITH_AUTH = make_middleware_with_config(application, {"here":"."},
'./who.ini', log_file="who.log")
'./who.ini', log_file="who_idp.log")
# ----------------------------------------------------------------------------

View File

@@ -4,7 +4,7 @@
"sp":{
"name" : "Rolands SP",
"endpoints":{
"assertion_consumer_service": ["http://lingon.catalogix.se:8087/"],
"assertion_consumer_service": ["http://localhost:8087/"],
},
"required_attributes": ["surname", "givenname", "edupersonaffiliation"],
"optional_attributes": ["title"],

View File

@@ -111,7 +111,7 @@ def application(environ, start_response):
from repoze.who.config import make_middleware_with_config
app_with_auth = make_middleware_with_config(application, {"here":"."},
'./who.ini', log_file="who.log")
'./who.ini', log_file="who_sp.log")
# ----------------------------------------------------------------------------
PORT = 8087