
With the minimal Designate deployment with devstack, keystone module doesn't load proxy_http so Designate API requests may fail. Explicitly enable the module to make sure the apache2 setup always works for Designate. Closes-Bug: #1999019 Change-Id: I1fc02225b6676b68137245df2279340f215221f4
39 lines
1.5 KiB
Plaintext
39 lines
1.5 KiB
Plaintext
function designate_configure_uwsgi {
|
|
write_uwsgi_config "$DESIGNATE_UWSGI_CONF" "$DESIGNATE_UWSGI" "/dns"
|
|
|
|
# We are using the http transport to work around an issue with
|
|
# broken connections when using the uwsgi protocol of a local socket
|
|
# See bug: https://github.com/unbit/uwsgi/issues/2368
|
|
enable_apache_mod proxy
|
|
enable_apache_mod proxy_http
|
|
wsgi_conf=$(apache_site_config_for designate-api-wsgi)
|
|
echo 'ProxyPass "/dns" "http://127.0.0.1:60053" retry=0' | sudo tee $wsgi_conf
|
|
|
|
iniset $DESIGNATE_UWSGI_CONF uwsgi http-socket 127.0.0.1:60053
|
|
}
|
|
|
|
function designate_configure_mod_wsgi {
|
|
local designate_api_apache_conf
|
|
local venv_path=""
|
|
local designate_bin_dir=""
|
|
designate_bin_dir=$(get_python_exec_prefix)
|
|
designate_api_apache_conf=$(apache_site_config_for designate-api)
|
|
|
|
if [[ ${USE_VENV} = True ]]; then
|
|
venv_path="python-path=${PROJECT_VENV["designate"]}/lib/$(python_version)/site-packages"
|
|
designate_bin_dir=${PROJECT_VENV["designate"]}/bin
|
|
fi
|
|
|
|
sudo cp $DESIGNATE_DIR/devstack/files/apache-designate-api.template $designate_api_apache_conf
|
|
sudo sed -e "
|
|
s|%APACHE_NAME%|$APACHE_NAME|g;
|
|
s|%DESIGNATE_BIN_DIR%|$designate_bin_dir|g;
|
|
s|%SSLENGINE%|$designate_ssl|g;
|
|
s|%SSLCERTFILE%|$designate_certfile|g;
|
|
s|%SSLKEYFILE%|$designate_keyfile|g;
|
|
s|%USER%|$STACK_USER|g;
|
|
s|%VIRTUALENV%|$venv_path|g;
|
|
s|%APIWORKERS%|$API_WORKERS|g;
|
|
" -i $designate_api_apache_conf
|
|
}
|