From fa108b1dcdd66a20ae67fb351c6fd008563f6a6e Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Wed, 13 Jun 2018 22:41:55 +0300 Subject: Change: direct /debian to apache on port 8080 --- roles/haproxy/templates/haproxy.cfg.j2 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/roles/haproxy/templates/haproxy.cfg.j2 b/roles/haproxy/templates/haproxy.cfg.j2 index a028ad1..8117d8a 100644 --- a/roles/haproxy/templates/haproxy.cfg.j2 +++ b/roles/haproxy/templates/haproxy.cfg.j2 @@ -39,13 +39,18 @@ frontend http-in acl blobs path_beg /blobs acl token path_beg /token acl notify path_beg /notify + acl debian path_beg /debian acl any method GET HEAD POST PUT DELETE + use_backend apache if debian use_backend notification_service if notify use_backend artifact_store if blobs use_backend qvisqve if token use_backend controller if any +backend apache + server apache_1 127.0.0.1:8080 + backend controller server controller_1 127.0.0.1:{{ controller_port }} -- cgit v1.2.1