Move to Tasks: Connect Front Back. (#3643)

* Move to Tasks: Connect Front Back.

* Fix paths.
This commit is contained in:
Steve Perry
2017-05-04 16:48:27 -07:00
committed by GitHub
parent 3996566963
commit 29790b232c
11 changed files with 13 additions and 13 deletions
@@ -0,0 +1,4 @@
FROM nginx:1.9.14
RUN rm /etc/nginx/conf.d/default.conf
COPY frontend.conf /etc/nginx/conf.d
@@ -0,0 +1,11 @@
upstream hello {
server hello;
}
server {
listen 80;
location / {
proxy_pass http://hello;
}
}