1
0

[nginx] fix typo

This commit is contained in:
Simon Cornet 2024-02-06 08:24:36 +01:00
parent 4aad2227d4
commit cd109cd4f1

View File

@ -18,7 +18,7 @@ server {
# health uri # health uri
location /health { location /health {
# return 'rp-ok' in plain text # return 'waf-ok' in plain text
add_header Content-Type text/plain; add_header Content-Type text/plain;
return 200 'waf-ok'; return 200 'waf-ok';
} }
@ -59,9 +59,9 @@ server {
# health uri # health uri
location /health { location /health {
# return 'rp-ok' in plain text # return 'waf-ok' in plain text
add_header Content-Type text/plain; add_header Content-Type text/plain;
return 200 'rp-ok'; return 200 'waf-ok';
} }
location / { location / {