diff --git a/manifests/horizon.pp b/manifests/horizon.pp index 4824da735..58b71dde3 100644 --- a/manifests/horizon.pp +++ b/manifests/horizon.pp @@ -29,18 +29,19 @@ class openstack_integration::horizon { } class { 'horizon': - secret_key => 'big_secret', - allowed_hosts => $::openstack_integration::config::ip_for_url, - listen_ssl => $::openstack_integration::config::ssl, - ssl_redirect => $::openstack_integration::config::ssl, - horizon_cert => $::openstack_integration::params::cert_path, - horizon_key => "/etc/openstack-dashboard/ssl/private/${::fqdn}.pem", - horizon_ca => $::openstack_integration::params::ca_bundle_cert_path, - keystone_url => $::openstack_integration::config::keystone_auth_uri, - log_level => 'DEBUG', + secret_key => 'big_secret', + allowed_hosts => $::openstack_integration::config::ip_for_url, + listen_ssl => $::openstack_integration::config::ssl, + ssl_redirect => $::openstack_integration::config::ssl, + horizon_cert => $::openstack_integration::params::cert_path, + horizon_key => "/etc/openstack-dashboard/ssl/private/${::fqdn}.pem", + horizon_ca => $::openstack_integration::params::ca_bundle_cert_path, + ssl_verify_client => 'optional', + keystone_url => $::openstack_integration::config::keystone_auth_uri, + log_level => 'DEBUG', # need to disable offline compression due to # https://bugs.launchpad.net/ubuntu/+source/horizon/+bug/1424042 - compress_offline => false, + compress_offline => false, } horizon::dashboard { 'heat': }