diff options
author | Ikram Ikramullah <ikram@research.att.com> | 2020-01-23 11:53:16 -0500 |
---|---|---|
committer | dhebeha <dhebeha.mj71@wipro.com> | 2020-01-24 21:55:18 +0530 |
commit | 920b9ff54e4b75973b27438158030c5a4736ffc6 (patch) | |
tree | af74a97ee1ae568d11164582a3478b7111941d77 /api_paste.ini | |
parent | 9f8f7046d3978b6dbd05c7e5ad645b3dd9201249 (diff) |
Encryption/Decryption utility
Putting in the encryption/decryption utility. Hit cipher-util inside
the virutalenv to see its usage. The work is still in progress.
Issue-ID: OPTFRA-683
Signed-off-by: dhebeha <dhebeha.mj71@wipro.com>
Change-Id: I7a4845c1318db8d14f1efbb0f98e785adf214e06
Diffstat (limited to 'api_paste.ini')
-rw-r--r-- | api_paste.ini | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/api_paste.ini b/api_paste.ini new file mode 100644 index 0000000..4299f46 --- /dev/null +++ b/api_paste.ini @@ -0,0 +1,26 @@ +# Conductor API WSGI Pipeline +# Define the filters that make up the pipeline for processing WSGI requests +# Note: This pipeline is PasteDeploy's term rather than Conductor's pipeline +# used for processing samples + +# Remove authtoken from the pipeline if you don't want to use keystone authentication +[pipeline:main] +pipeline = cors http_proxy_to_wsgi api-server +#pipeline = cors http_proxy_to_wsgi request_id authtoken api-server + +[app:api-server] +paste.app_factory = conductor.api.app:app_factory + +#[filter:authtoken] +#paste.filter_factory = keystonemiddleware.auth_token:filter_factory + +#[filter:request_id] +#paste.filter_factory = oslo_middleware:RequestId.factory + +[filter:cors] +paste.filter_factory = oslo_middleware.cors:filter_factory +oslo_config_project = conductor + +[filter:http_proxy_to_wsgi] +paste.filter_factory = oslo_middleware.http_proxy_to_wsgi:HTTPProxyToWSGI.factory +oslo_config_project = conductor |