From b8fe1f9eaefcf87e611e71699ca3e61af4deec39 Mon Sep 17 00:00:00 2001 From: zhangqx2010 Date: Mon, 2 Oct 2017 19:07:27 +0800 Subject: [PATCH] add missing file --- .../access-application-cluster/frontend/frontend.conf | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 cn/docs/tasks/access-application-cluster/frontend/frontend.conf diff --git a/cn/docs/tasks/access-application-cluster/frontend/frontend.conf b/cn/docs/tasks/access-application-cluster/frontend/frontend.conf new file mode 100644 index 0000000000..5d172dfe99 --- /dev/null +++ b/cn/docs/tasks/access-application-cluster/frontend/frontend.conf @@ -0,0 +1,11 @@ +upstream hello { + server hello; +} + +server { + listen 80; + + location / { + proxy_pass http://hello; + } +} \ No newline at end of file