Replies: 3 comments
-
Hey, Seeing online that the name of the vars are :
so you could try to add as well otherwise, you will need to modify the start.ini of jetty config i guess |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi,Isn't it the server (apache) which limits the url size ? default is usually set to 4096 or 8192, but can be changed if you have admin rights on server. However, if changing the server's settings is not an option, try using post instead of get.Please feel free to tell me if the above is rubbish.Regards,RodOn 6 Aug 2025 10:45, Jean-Michel Crepel ***@***.***> wrote:
Hey,
You might need to increase other variable for jetty configuration for URI max size.
Seeing online that the name of the vars are :
`## Max response content write length that is buffered (in bytes)
jetty.httpConfig.outputAggregationSize=8192
Max request headers size (in bytes)
jetty.httpConfig.requestHeaderSize=8192
Max response headers size (in bytes)
jetty.httpConfig.responseHeaderSize=8192
`
so you could try to add as well "-Dorg.eclipse.jetty.httpConfig.requestHeaderSize=16384'
otherwise, you will need to modify the start.ini of jetty config i guess
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you are subscribed to this thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
0 replies
-
thank you very much the first post solve my issues. thank ! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
for some particular case, I have WMS requests with a very long cql filter query parameter.
the return from these request are error 414 (URI too long). when I check the logs of the docker-geoserver container I have the following message :
WARN:oejh.HttpParser:qtp55331187-22: URI is too large >8192
I tried to add the following env var in the docker compose
but it doesn't seem to change anythings.
I am not very aware of java environnement.
Do you known which parameters I can use ? Is it the correct one ? Do I need to change other settings? How can I check that this parameter is taken into account ?
Beta Was this translation helpful? Give feedback.
All reactions