Merge "Add keystone VirtualHost for port 443 when USE_SSL is True"
This commit is contained in:
commit
ee548bc2bf
@ -34,6 +34,12 @@ LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\" %D(us)"
|
||||
%SSLKEYFILE%
|
||||
</VirtualHost>
|
||||
|
||||
%SSLLISTEN%<VirtualHost *:443>
|
||||
%SSLLISTEN% %SSLENGINE%
|
||||
%SSLLISTEN% %SSLCERTFILE%
|
||||
%SSLLISTEN% %SSLKEYFILE%
|
||||
%SSLLISTEN%</VirtualHost>
|
||||
|
||||
Alias /identity %KEYSTONE_BIN%/keystone-wsgi-public
|
||||
<Location /identity>
|
||||
SetHandler wsgi-script
|
||||
|
@ -153,6 +153,7 @@ function cleanup_keystone {
|
||||
function _config_keystone_apache_wsgi {
|
||||
local keystone_apache_conf
|
||||
keystone_apache_conf=$(apache_site_config_for keystone)
|
||||
keystone_ssl_listen="#"
|
||||
local keystone_ssl=""
|
||||
local keystone_certfile=""
|
||||
local keystone_keyfile=""
|
||||
@ -161,6 +162,7 @@ function _config_keystone_apache_wsgi {
|
||||
local venv_path=""
|
||||
|
||||
if is_ssl_enabled_service key; then
|
||||
keystone_ssl_listen=""
|
||||
keystone_ssl="SSLEngine On"
|
||||
keystone_certfile="SSLCertificateFile $KEYSTONE_SSL_CERT"
|
||||
keystone_keyfile="SSLCertificateKeyFile $KEYSTONE_SSL_KEY"
|
||||
@ -178,6 +180,7 @@ function _config_keystone_apache_wsgi {
|
||||
s|%PUBLICPORT%|$keystone_service_port|g;
|
||||
s|%ADMINPORT%|$keystone_auth_port|g;
|
||||
s|%APACHE_NAME%|$APACHE_NAME|g;
|
||||
s|%SSLLISTEN%|$keystone_ssl_listen|g;
|
||||
s|%SSLENGINE%|$keystone_ssl|g;
|
||||
s|%SSLCERTFILE%|$keystone_certfile|g;
|
||||
s|%SSLKEYFILE%|$keystone_keyfile|g;
|
||||
|
Loading…
Reference in New Issue
Block a user