# Default pipeline [pipeline:heat-api] pipeline = versionnegotiation ec2authtoken authtoken context apiv1app # Use the following pipeline for keystone auth # i.e. in heat-api.conf: # [paste_deploy] # flavor = keystone # [pipeline:heat-api-keystone] pipeline = versionnegotiation ec2authtoken authtoken context apiv1app # Use the following pipeline to enable transparent caching of image files # i.e. in heat-api.conf: # [paste_deploy] # flavor = caching # [pipeline:heat-api-caching] pipeline = versionnegotiation ec2authtoken authtoken context cache apiv1app # Use the following pipeline for keystone auth with caching # i.e. in heat-api.conf: # [paste_deploy] # flavor = keystone+caching # [pipeline:heat-api-keystone+caching] pipeline = versionnegotiation ec2authtoken authtoken context cache apiv1app # Use the following pipeline to enable the Image Cache Management API # i.e. in heat-api.conf: # [paste_deploy] # flavor = cachemanagement # [pipeline:heat-api-cachemanagement] pipeline = versionnegotiation ec2authtoken authtoken context cache cachemanage apiv1app # Use the following pipeline for keystone auth with cache management # i.e. in heat-api.conf: # [paste_deploy] # flavor = keystone+cachemanagement # [pipeline:heat-api-keystone+cachemanagement] pipeline = versionnegotiation ec2authtoken authtoken auth-context cache cachemanage apiv1app [app:apiv1app] paste.app_factory = heat.common.wsgi:app_factory heat.app_factory = heat.api.v1:API [filter:versionnegotiation] paste.filter_factory = heat.common.wsgi:filter_factory heat.filter_factory = heat.api.middleware.version_negotiation:VersionNegotiationFilter [filter:cache] paste.filter_factory = heat.common.wsgi:filter_factory heat.filter_factory = heat.api.middleware.cache:CacheFilter [filter:cachemanage] paste.filter_factory = heat.common.wsgi:filter_factory heat.filter_factory = heat.api.middleware.cache_manage:CacheManageFilter [filter:context] paste.filter_factory = heat.common.wsgi:filter_factory heat.filter_factory = heat.common.context:ContextMiddleware [filter:ec2authtoken] paste.filter_factory = heat.common.wsgi:filter_factory heat.filter_factory = heat.api.v1:EC2Token auth_uri = http://127.0.0.1:5000/v2.0 keystone_ec2_uri = http://localhost:5000/v2.0/ec2tokens [filter:authtoken] paste.filter_factory = heat.common.auth_token:filter_factory service_protocol = http service_host = 127.0.0.1 service_port = 5000 auth_host = 127.0.0.1 auth_port = 35357 auth_protocol = http auth_uri = http://127.0.0.1:5000/v2.0 # These must be set to your local values in order for the token # authentication to work. admin_tenant_name = admin admin_user = admin admin_password = verybadpass [filter:auth-context] paste.filter_factory = heat.common.wsgi:filter_factory heat.filter_factory = keystone.middleware.heat_auth_token:KeystoneContextMiddleware