From f24ee8410f593be1b3c4846681b9693b09fc2735 Mon Sep 17 00:00:00 2001 From: Mark Boyd Date: Wed, 13 Nov 2024 13:59:42 -0500 Subject: [PATCH] update proxy to send logs to file --- .../templates/bin/run-proxy.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jobs/opensearch-dashboards-cf-auth-proxy/templates/bin/run-proxy.erb b/jobs/opensearch-dashboards-cf-auth-proxy/templates/bin/run-proxy.erb index 9480c74e..25150559 100644 --- a/jobs/opensearch-dashboards-cf-auth-proxy/templates/bin/run-proxy.erb +++ b/jobs/opensearch-dashboards-cf-auth-proxy/templates/bin/run-proxy.erb @@ -21,7 +21,7 @@ gunicorn \ --certfile $JOB_DIR/config/ssl/auth-proxy.crt \ --ca-certs $JOB_DIR/config/ssl/opensearch.ca \ --access-logfile $LOG_DIR/$JOB_NAME.access.log \ - --error-logfile - \ + --error-logfile $LOG_DIR/$JOB_NAME.error.log \ --log-level "<%= p('opensearch-dashboards-cf-auth-proxy.log_level') %>" \ --timeout <%= p('opensearch-dashboards-cf-auth-proxy.gunicorn.timeout') %> \ --workers <%= p('opensearch-dashboards-cf-auth-proxy.gunicorn.num_workers') %> \