aboutsummaryrefslogtreecommitdiffstats
path: root/extras/hs-test/resources/nginx/nginx_proxy_mirroring.conf
diff options
context:
space:
mode:
authorMatus Fabian <matfabia@cisco.com>2024-08-21 17:25:41 +0200
committerFlorin Coras <florin.coras@gmail.com>2024-08-22 07:08:20 +0000
commit7301abe9ba2fa75661238b0afece55eeeebce863 (patch)
treeca080a4dfde4bdf334590cab9507fd8270a4cb9b /extras/hs-test/resources/nginx/nginx_proxy_mirroring.conf
parent7e6606ab4ea9501195b234fb14077ef4950f8d4e (diff)
hs-test: nginx proxy/mirroring test cleanup
- test moved to proxy_test.go - topology and suite updated to be vpp/envoy proxy compliant Type: test Change-Id: Iabee50b76bb8d96851f831c0b57d0e98dc4b3a5f Signed-off-by: Matus Fabian <matfabia@cisco.com>
Diffstat (limited to 'extras/hs-test/resources/nginx/nginx_proxy_mirroring.conf')
-rw-r--r--extras/hs-test/resources/nginx/nginx_proxy_mirroring.conf5
1 files changed, 3 insertions, 2 deletions
diff --git a/extras/hs-test/resources/nginx/nginx_proxy_mirroring.conf b/extras/hs-test/resources/nginx/nginx_proxy_mirroring.conf
index 56debf5c290..7f6b09c6050 100644
--- a/extras/hs-test/resources/nginx/nginx_proxy_mirroring.conf
+++ b/extras/hs-test/resources/nginx/nginx_proxy_mirroring.conf
@@ -3,7 +3,7 @@ worker_processes 4;
worker_rlimit_nofile 102400;
daemon off;
-error_log /tmp/nginx/error.log;
+error_log /tmp/nginx/{{.LogPrefix}}-error.log info;
events {
use epoll;
@@ -44,7 +44,8 @@ http {
}
server {
- listen 80;
+ access_log /tmp/nginx/{{.LogPrefix}}-access.log;
+ listen {{.Port}};
server_name {{.Proxy}};
server_tokens off;