How to send a response with HAProxy without passing the request to web servers

前端 未结 2 1452
醉梦人生
醉梦人生 2021-02-04 08:27

The server is receiving thousands of OPTIONS requests due to CORS (Cross-Origin Resource Sharing). Right now, every options request is being sent to on

2条回答
  •  無奈伤痛
    2021-02-04 08:41

    Edit for HAProxy 2.2 and above: In case you need to support a whitelist of origins, Lua scripts can now generate the entire response without having to pass the request to the backend server. Sample Lua script with simple integration instructions can be found here: https://github.com/haproxytech/haproxy-lua-cors

    The only way to do this is in HAProxy 1.5.14 is by manually triggering the 503 error (no servers available to handle the request) and setting the error page to the file with custom CORS headers.

    backend cors_headers
        errorfile 503 /path/to/custom/file.http
    

    The file.http should contain the desired headers and 2 empty lines at the end

    HTTP/1.1 200 OK
    Access-Control-Allow-Origin: https://www.example.com
    Access-Control-Max-Age: 31536000
    Content-Length: 0
    Cache-Control: private
    
    
    
    

    This "method" has a couple of limitations:

    • there is no way to check the origin before sending the CORS headers, so you will either have to have a static list of allowed origins or you will have to allow all origins

    • lack of dynamic headers: you can't do

      http-response set-header Date %[date(),http_date]

    or set Expires header.

    Note: if you are updating the HTTP file dynamically over time, to apply the changes to the HAProxy you will have to restart it. It can be a graceful restart or a hard restart, in either case the new file will be loaded, cached and served immediately.

提交回复
热议问题