From bd64748a030809553022234849786b003de29bfa Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Mon, 25 Dec 2023 17:17:39 +0900 Subject: [PATCH] Document allowed_digests for formpost middleware The allowed_digests option were added to the formpost middleware in addition to the tempurl middleware[1], but the option was not added to the formpost section in the example proxy config file. [1] 2d063cd61f6915579840a41ac0248a26085e0245 Change-Id: Ic885e8bde7c1bbb3d93d032080b591db1de80970 --- etc/proxy-server.conf-sample | 3 +++ 1 file changed, 3 insertions(+) diff --git a/etc/proxy-server.conf-sample b/etc/proxy-server.conf-sample index a0a44d181f..96be886584 100644 --- a/etc/proxy-server.conf-sample +++ b/etc/proxy-server.conf-sample @@ -945,6 +945,9 @@ use = egg:swift#tempurl # Note: Put formpost just before your auth filter(s) in the pipeline [filter:formpost] use = egg:swift#formpost +# The digest algorithm(s) supported for generating signatures; +# whitespace-delimited. +# allowed_digests = sha1 sha256 sha512 # Note: Just needs to be placed before the proxy-server in the pipeline. [filter:name_check]