fault/devstack/files/api-paste.ini
Dean Troyer 95edd7af14 Add fm-rest-api and fm-client to DevStack
At the moment it just installs and partially configures it.

Depends-On: https://review.openstack.org/610756
Change-Id: If74b81841f583ad6d3850cd12ee337c1b4a1a177
Signed-off-by: Dean Troyer <dtroyer@gmail.com>
2018-10-29 10:54:49 -05:00

13 lines
309 B
INI

[app:api_v1]
paste.app_factory=fm.api.app:app_factory
[filter:authtoken]
acl_public_routes=/, /v1
paste.filter_factory=fm.api.middleware.auth_token:AuthTokenMiddleware.factory
[filter:request_id]
paste.filter_factory=oslo_middleware:RequestId.factory
[pipeline:fm-api]
pipeline=request_id authtoken api_v1