diff --git a/etc/functional_tests.conf b/etc/functional_tests.conf index 25065bcc..a0612acc 100644 --- a/etc/functional_tests.conf +++ b/etc/functional_tests.conf @@ -13,8 +13,8 @@ project_domain_name=Default [identity] # Replace these with values that represent your identity configuration -uri=http://localhost:5000/v2.0 -uri_v3=http://localhost:5000/v3 +uri=http://localhost/identity/v2.0 +uri_v3=http://localhost/identity/v3 auth_version=v3 username=admin diff --git a/functionaltests/common/config.py b/functionaltests/common/config.py index 4466a515..39f7b0aa 100644 --- a/functionaltests/common/config.py +++ b/functionaltests/common/config.py @@ -26,8 +26,8 @@ def setup_config(config_file=''): identity_group = cfg.OptGroup(name='identity') identity_options = [ - cfg.StrOpt('uri', default='http://localhost:5000/v2.0'), - cfg.StrOpt('uri_v3', default='http://localhost:5000/v3'), + cfg.StrOpt('uri', default='http://localhost/identity/v2.0'), + cfg.StrOpt('uri_v3', default='http://localhost/identity/v3'), cfg.StrOpt('auth_version', default='v3'), cfg.StrOpt('username', default='admin'), cfg.StrOpt('password', default='secretadmin'),