aboutsummaryrefslogtreecommitdiffhomepage
path: root/pingora-core/tests
diff options
context:
space:
mode:
authorYuchen Wu <[email protected]>2024-03-01 11:51:14 -0800
committerYuchen Wu <[email protected]>2024-03-01 13:47:27 -0800
commit8160ad169878ea6b4884b977f2a96541083036c4 (patch)
tree3e0100f38369e96a7e27456230e1e841b021cd3f /pingora-core/tests
parente8113822247b5f9bb4eab34cb10121b873e73fd1 (diff)
downloadpingora-8160ad169878ea6b4884b977f2a96541083036c4.tar.gz
pingora-8160ad169878ea6b4884b977f2a96541083036c4.zip
Fix typos and grammar issues
Co-authored-by: =?~~~?q?Ren=C3=A9=20Kla=C4=8Dan?= <[email protected]> Co-authored-by: 12932 <[email protected]> Co-authored-by: Alessandro <[email protected]> Co-authored-by: InImpasse <[email protected]> Co-authored-by: Paul James Cleary <[email protected]> Co-authored-by: Yang Hau <[email protected]> Co-authored-by: Morpheus <[email protected]> Co-authored-by: mobeicanyue <[email protected]> Co-authored-by: Twacqwq <[email protected]> Co-authored-by: Bobby <[email protected]> Co-authored-by: Dup4 <[email protected]> Co-authored-by: Josh Soref <[email protected]> Co-authored-by: Sheldon <[email protected]> Co-authored-by: houseme <[email protected]> Co-authored-by: ZhangIvan1 <[email protected]> Co-authored-by: GrahamQuan <[email protected]> Co-authored-by: =?~~~?q?Cristian=20Paul=20Pe=C3=B1aranda=20Rojas?= <[email protected]> Co-authored-by: Nathan Sit <[email protected]> Co-authored-by: David Lee <[email protected]> Co-authored-by: Mengliang Su <[email protected]> Co-authored-by: =?~~~?q?=EA=B9=80=EC=84=A0=EC=9A=B0?= <[email protected]> Co-authored-by: Allen Huang <[email protected]> Co-authored-by: Opacity <[email protected]> Co-authored-by: cris <[email protected]> Co-authored-by: Killian Ye <[email protected]> Co-authored-by: Jiwei-dev <[email protected]> Co-authored-by: Jinfeng Wang <[email protected]> Co-authored-by: Ikko Eltociear Ashimine <[email protected]>
Diffstat (limited to 'pingora-core/tests')
-rw-r--r--pingora-core/tests/nginx_proxy.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/pingora-core/tests/nginx_proxy.conf b/pingora-core/tests/nginx_proxy.conf
index 0acbd93..4e53933 100644
--- a/pingora-core/tests/nginx_proxy.conf
+++ b/pingora-core/tests/nginx_proxy.conf
@@ -32,7 +32,7 @@ http {
keepalive_timeout 30;
keepalive_requests 99999;
- upstream plantext {
+ upstream plaintext {
server 127.0.0.1:8000;
keepalive 128;
keepalive_requests 99999;
@@ -53,7 +53,7 @@ http {
location / {
keepalive_timeout 30;
- proxy_pass http://plantext;
+ proxy_pass http://plaintext;
proxy_http_version 1.1;
proxy_set_header Connection "Keep-Alive";
}