FOSDEM 2019: How to write a reverse proxy with Go in 25 minutes.

แชร์
ฝัง
  • เผยแพร่เมื่อ 2 ม.ค. 2025

ความคิดเห็น • 9

  • @9888622400
    @9888622400 4 ปีที่แล้ว +4

    Thanks for the great Video!!! Never thought there are so many things behind Reverse Proxy.

    • @TraefikLabs
      @TraefikLabs  4 ปีที่แล้ว

      Thank you, Arshpreet! See you in the Community Forum: community.containo.us/

  • @yannicktamburrini7833
    @yannicktamburrini7833 3 ปีที่แล้ว +1

    L'accent français restera euuuh toujours euuuh épiqueeeeeeuh

  • @Moukrea
    @Moukrea 3 ปีที่แล้ว

    Wonder if that's doable using fasthttp

  • @GerardoOscarJT
    @GerardoOscarJT 5 ปีที่แล้ว +2

    header.ADD instead of header.set

    • @TraefikLabs
      @TraefikLabs  5 ปีที่แล้ว

      Hello, Gerardo! We'd love if you join us at the Community Forum and share your comments. Thank you. community.containo.us

    • @riffzone
      @riffzone ปีที่แล้ว

      Probably true for the header copy loop, but Set would still be right for X-Forwarded-For setting, or the trailer announce ?

    • @filipboye-kofi3018
      @filipboye-kofi3018 ปีที่แล้ว

      why ? Set literally overrides the header and thats the point, you want to copy 1:1 response of backend server to client

    • @oussaber
      @oussaber 3 หลายเดือนก่อน

      @@filipboye-kofi3018 no if the original header contained multiple values, Set will be called for each one and override the value before, so only the last header value will be set eventually. Add on the other hand append the values if the header already exists.