From b5f85b04668f4163a82b697ae38c41040f5e1cdd Mon Sep 17 00:00:00 2001 From: Artem Goncharov Date: Mon, 13 Oct 2025 16:38:07 +0000 Subject: [PATCH] chore: Update py-keystone start script --- tools/start_keystone.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/start_keystone.sh b/tools/start_keystone.sh index f92d4e02..b2add97b 100755 --- a/tools/start_keystone.sh +++ b/tools/start_keystone.sh @@ -4,6 +4,6 @@ keystone-manage db_sync keystone-manage fernet_setup --keystone-user root --keystone-group root -keystone-manage bootstrap --bootstrap-user admin --bootstrap-password password --bootstrap-public-url http://localhost:15001 --bootstrap-internal-url http://localhost:18080 +keystone-manage bootstrap --bootstrap-user admin --bootstrap-password password --bootstrap-public-url http://localhost:5001 --bootstrap-internal-url http://localhost:8080 --bootstrap-region-id dev -uwsgi --http-socket :5000 --module 'keystone.server.wsgi:initialize_public_application()' -b 65535 +uwsgi --module "keystone.server.wsgi:initialize_public_application()" --http-socket :5001 -b 65535 --http-keepalive --so-keepalive --logformat "Request %(uri):%(method) returned %(status) in %(msecs)ms"