mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
Merge pull request #1375 from spwoodcock/docs/allowed-methods-post
[DOCS] add comment to ALLOWED_METHODS section about enabling HTTP POST
This commit is contained in:
commit
15fa91d53e
1 changed files with 4 additions and 0 deletions
|
|
@ -41,6 +41,10 @@ STREAM support :x:
|
|||
|
||||
You can control the allowed HTTP methods by listing them (separated with "|") in the `ALLOWED_METHODS` setting (default : `GET|POST|HEAD`). Clients sending a method which is not listed will get a "405 - Method Not Allowed".
|
||||
|
||||
!!! note Using POST
|
||||
|
||||
If `POST` is required, then `OPTIONS` should also be specified to allow for the CORS pre-flight request.
|
||||
|
||||
### Max sizes
|
||||
|
||||
STREAM support :x:
|
||||
|
|
|
|||
Loading…
Reference in a new issue