Files
Steve Perry 29790b232c Move to Tasks: Connect Front Back. (#3643)
* Move to Tasks: Connect Front Back.

* Fix paths.
2017-05-04 16:48:27 -07:00

12 lines
121 B
Plaintext

upstream hello {
server hello;
}
server {
listen 80;
location / {
proxy_pass http://hello;
}
}