1
0
Fork 0

Added Custom Error messages

This commit is contained in:
Joao Gilberto Magalhaes 2018-09-17 00:53:36 -05:00
parent 80b49c6185
commit 20b27713bd
9 changed files with 186 additions and 2 deletions

View file

@ -3,6 +3,7 @@ FROM haproxy:1.8-alpine
RUN apk add --no-cache bash
COPY entrypoint.sh /
COPY assets/errors-custom/* /etc/haproxy/errors-custom/
ENTRYPOINT [ "/entrypoint.sh" ]
CMD ["haproxy", "-f", "/usr/local/etc/haproxy/haproxy.cfg"]
CMD ["haproxy", "-f", "/etc/haproxy/haproxy.cfg"]

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -18,6 +18,14 @@ defaults
timeout client 10s
timeout server 10m
errorfile 400 /etc/haproxy/errors-custom/400.http
errorfile 403 /etc/haproxy/errors-custom/403.http
errorfile 408 /etc/haproxy/errors-custom/408.http
errorfile 500 /etc/haproxy/errors-custom/500.http
errorfile 502 /etc/haproxy/errors-custom/502.http
errorfile 503 /etc/haproxy/errors-custom/503.http
errorfile 504 /etc/haproxy/errors-custom/504.http
global
log 127.0.0.1 local0 notice
maxconn 2000
@ -84,7 +92,7 @@ backend srv_80_$COUNT
}
HAPROXY_CFG="/usr/local/etc/haproxy/haproxy.cfg"
HAPROXY_CFG="/etc/haproxy/haproxy.cfg"
FRONTEND=""
BACKEND=""
TURN="FB"