-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpaste.ini
More file actions
22 lines (18 loc) · 740 Bytes
/
paste.ini
File metadata and controls
22 lines (18 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Our vendordata app, located in the file named app.py
[app:vendordata]
paste.app_factory = app:app_factory
# The processing pipeline requests for our app go through. The order matters
# here. You can remove things from this pipeline, for example debug and
# authtoken if you don't want those facilities.
[pipeline:main]
pipeline = http_proxy authtoken debug vendordata
# Keystone auth
[filter:authtoken]
paste.filter_factory = keystonemiddleware.auth_token:filter_factory
delay_auth_decision = true
# Debug output, you'd probably remove this for production
[filter:debug]
paste.filter_factory = oslo_middleware:Debug.factory
# Handle HTTP proxy headers
[filter:http_proxy]
paste.filter_factory = oslo_middleware:HTTPProxyToWSGI.factory