diff --git a/proxy-frontend/nginx.conf b/proxy-frontend/nginx.conf index 5b4858d..20b26e4 100644 --- a/proxy-frontend/nginx.conf +++ b/proxy-frontend/nginx.conf @@ -31,10 +31,13 @@ http { } upstream pepperchan_shop { server 172.31.206.1:80; - } -upstream maud_needs_rocks { + } + upstream maud_needs_rocks { server 172.31.206.1:80; - } + } + upstream docs_motorsportsresearch_org { + server 172.31.23.2:80; + } server { listen 80; server_name watch.mommys.plumbing; @@ -77,4 +80,11 @@ upstream maud_needs_rocks { proxy_pass http://rpwriting_com; } } + server { + listen 80; + server_name docs.motorsportsresearch.org; + location / { + proxy_pass http://docs_motorsportsresearch_org; + } + } }