From 1ede8a2be9dda22c9cd9d4086df2dc8481f70fab Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 1 Mar 2021 12:24:42 +0100 Subject: fix misc warnings/errors --- taler-merchant-manual.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'taler-merchant-manual.rst') diff --git a/taler-merchant-manual.rst b/taler-merchant-manual.rst index 0d98583c..990b57b1 100644 --- a/taler-merchant-manual.rst +++ b/taler-merchant-manual.rst @@ -1013,22 +1013,22 @@ each instance: if ($http_authorization !~ "(?i)ApiKey FOOTOKEN") { return 401; } - proxy_pass ...; // as above + proxy_pass ...; # as above } location ~ ^/instances/bar/private/ { if ($http_authorization !~ "(?i)ApiKey BARTOKEN") { return 401; } - proxy_pass ...; // as above + proxy_pass ...; # as above } location /private/ { if ($http_authorization !~ "(?i)ApiKey MASTERTOKEN") { return 401; } - proxy_pass ...; // as above + proxy_pass ...; # as above } location ~ /private/ { - return 401; // access to instances not explicitly configured is forbidden + return 401; # access to instances not explicitly configured is forbidden } Apache -- cgit v1.2.3