-
I have a rest API where I have enabled the default HTTP compression, that is handled with content negotiation. i.e. the requests comes with e.g. an The use case I want to support is for an internal API where the POST requests can be big and I want to send them compressed to Quarkus. i.e. send
instead of
Quarkus fails to parse the payload when I attempt to former. I know request compression is not supported in all servers and has some security risks associated but wanted to check if there is some way I could enable it. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @jimkont, I believe that |
Beta Was this translation helpful? Give feedback.
Hi @jimkont, I believe that
quarkus.http.enable-decompression=true
should do the trick.