add missing file

This commit is contained in:
zhangqx2010 2017-10-02 19:07:27 +08:00
parent d624633279
commit b8fe1f9eae
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
upstream hello {
server hello;
}
server {
listen 80;
location / {
proxy_pass http://hello;
}
}