Skip to content

Commit

Permalink
lib/keystone: Migrate Keystone to WSGI module path
Browse files Browse the repository at this point in the history
Depends-on: https://review.opendev.org/c/openstack/keystone/+/932060
Change-Id: I10bea74fb0bce1888d324a61f23c25b8f7082e97
  • Loading branch information
gtema committed Nov 22, 2024
1 parent 5f49df4 commit c1eeb77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/keystone
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ fi
KEYSTONE_CONF_DIR=${KEYSTONE_CONF_DIR:-/etc/keystone}
KEYSTONE_CONF=$KEYSTONE_CONF_DIR/keystone.conf
KEYSTONE_PUBLIC_UWSGI_CONF=$KEYSTONE_CONF_DIR/keystone-uwsgi-public.ini
KEYSTONE_PUBLIC_UWSGI=$KEYSTONE_BIN_DIR/keystone-wsgi-public
KEYSTONE_PUBLIC_UWSGI=keystone.wsgi.api:application

# Select the Identity backend driver
KEYSTONE_IDENTITY_BACKEND=${KEYSTONE_IDENTITY_BACKEND:-sql}
Expand Down Expand Up @@ -226,7 +226,7 @@ function configure_keystone {

iniset $KEYSTONE_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL

write_uwsgi_config "$KEYSTONE_PUBLIC_UWSGI_CONF" "$KEYSTONE_PUBLIC_UWSGI" "/identity"
write_uwsgi_config "$KEYSTONE_PUBLIC_UWSGI_CONF" "$KEYSTONE_PUBLIC_UWSGI" "/identity" "" "keystone-api"

iniset $KEYSTONE_CONF DEFAULT max_token_size 16384

Expand Down

0 comments on commit c1eeb77

Please sign in to comment.