INSTALAÇÃO GERENCIADA
...
Configurações do Proxy
CORS - HAProxy
3 min
observações pré requesito haproxy versão 2 2 ou superior nos frontends 80 e 443 adicionar capture request header origin len 128 acl is options method options acl is head method head use backend cors backend if is options or is head criar backend cors backend com as seguintes opções backend cors backend http after response add header access control allow origin "https //\<dominio>" http after response set header access control allow credentials "true" http after response set header access control allow methods "get,head,options,post,put" http after response set header access control allow headers "accept language,authorization,x csrf token" http after response set header access control max age "31536000" http request return status 200

