http-request redirect code 301 location https://my.url.com%[path,regsub(^/my_old_path,,)] if { path_beg /my_old_path }
here, the purpose is to redirect a hit on https://url.com/my_old_path/foo/bar/baz
to https://my.url.com/foo/bar/baz
Pour une fois que quelqu'un fait un article clair et concis sur un truc haproxy; autant le souligner :D
Super guide sur l'oauth proxy via haproxy
for i in $(grep -i ^backend haproxy.cfg |awk '{ print $2 }'); do
echo if \( \$msg contains \"$i\" \) then \{; echo action\(type=\"omfile\" file=\"/var/log/haproxy-$i.log\" flushOnTXEnd=\"off\"\); echo stop ; echo \};
done
la section de la doc que j'ai passé 10min à chercher pour trouver la légende du format par défaut des logs
via moi
encore un grand merci à Willy pour le commentaire utile :D
In a relevant Backend/Frontend :
http-response set-header "Access-Control-Allow-Methods" "GET, POST, PUT, DELETE, OPTIONS" if METH_OPTIONS
http-response set-header "Access-Control-Allow-Credentials" "true" if METH_OPTIONS
http-response set-header "Access-Control-Allow-Headers" "Content-Type, Accept Content-Length: 0" if METH_OPTIONS
http-response set-header Access-Control-Allow-Origin *