From da0fa6592ae685a99994b4ff871e67cc40c6a277 Mon Sep 17 00:00:00 2001 From: Cheney Date: Mon, 5 Mar 2012 22:14:20 +0800 Subject: [PATCH] update readme nginx --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index da8ffb0..23149cf 100755 --- a/README.md +++ b/README.md @@ -33,12 +33,20 @@ All the page must use UTF-8 encoding. ## Bind NginX server { + listen 80; + server_name julia; + index index.html index.htm; + location / { + proxy_pass http://127.0.0.1:4444; + proxy_set_header Host $host; + } + }