Hi , i’m new with haproxy…we have 2 backends that serve serveral web apps and in one app we generate a pdf file with a barcode image…in those backend i can generate the pdf and i can see the barcode image…but if i get the pdf over the haproxy in this pdf cant see the barcode image.
Develop department add the image by memory stream…
This is my backend config:
backend back_Secuenciadores30
option httpchk GET /Secuenciadores30
mode http
option forwardfor
no option httpclose
http-check expect ! rstatus ^5
balance roundrobin
cookie SERVER_Secuenciadores30 insert indirect nocache
server VIDALCORE01 192.168.1.35:80 check cookie VC1
server VIDALCORE02 192.168.1.45:80 check cookie VC2
server VIDAL-ASP2 192.168.1.52:80 check cookie VIDAL-ASP2
Global config:
global
log /dev/log local0
log /dev/log local1 notice
chroot /var/lib/haproxy
stats socket /run/haproxy/admin.sock mode 660 level admin expose-fd listeners
stats timeout 8600s
user haproxy
group haproxy
tune.bufsize 32768
daemon
# Default SSL material locations
ca-base /etc/ssl/certs
crt-base /etc/ssl/private
#See: https://ssl-config.mozilla.org/#server=haproxy&server-version=2.0.3&config=intermediate
ssl-default-server-ciphersuites TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256
ssl-default-server-options no-sslv3 no-tlsv10 no-tlsv11 no-tlsv12 no-tls-tickets
defaults
log global
mode http
option httplog
option dontlognull
# reenvio directo con la IP de Origen del paquete
option forwardfor
timeout connect 10s
timeout client 30s
timeout server 30s
errorfile 400 /etc/haproxy/errors/400.http
errorfile 403 /etc/haproxy/errors/403.http
errorfile 408 /etc/haproxy/errors/408.http
errorfile 500 /etc/haproxy/errors/500.http
errorfile 502 /etc/haproxy/errors/502.http
errorfile 503 /etc/haproxy/errors/503.http
errorfile 504 /etc/haproxy/errors/504.http