commit d4ebd0778e00bb50c38eab6670689775433e0cd3 parent e7326dd5388627a8d13c3219977cd2742bad1aeb Author: Marcello Stanisci <marcello.stanisci@inria.fr> Date: Wed, 4 Jan 2017 13:15:37 +0100 Missing semi-colon Diffstat:
| M | docker/nginx/proxy.conf | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docker/nginx/proxy.conf b/docker/nginx/proxy.conf @@ -4,12 +4,12 @@ server { location / { autoindex off; - proxy_pass http://exchange:8081 + proxy_pass http://exchange:8081; } location /admin { autoindex off; - proxy_pass http://exchange:18080 + proxy_pass http://exchange:18080; } include conf.d/favicon_robots;