You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
puma is not accepting the PROPFIND http method by default. and log the following message:
Unsupported HTTP method used: PROPFIND
To resolve the problem I've copied a Gemfile.local config with the webrick dependency and started the container with the command rails server -u webrick -b 0.0.0.0 then the call with the PROPFIND http method where correctly sent to the redmine app.
It would be nice to have an environment variable to enable all http methods with puma.
The text was updated successfully, but these errors were encountered:
Oh fun -- looks like this limitation was reported/discussed in Puma upstream in puma/puma#3014, with PROPFIND being one of the examples most frequently discussed there.
The end result appears to have been puma/puma#3106 / puma/puma@dfd33df, which is part of Puma 6.3.0+. I'm not entirely sure where you'd put your "puma configuration", but it's possible you can use supported_http_methods in that to fix this with Puma for your use case / this Redmine plugin's functionality.
puma is not accepting the PROPFIND http method by default. and log the following message:
To resolve the problem I've copied a Gemfile.local config with the
webrick
dependency and started the container with the commandrails server -u webrick -b 0.0.0.0
then the call with the PROPFIND http method where correctly sent to the redmine app.It would be nice to have an environment variable to enable all http methods with puma.
The text was updated successfully, but these errors were encountered: