commit 0057dcadb37ec558936b3c9580444ba2ace7e1c3
parent dc77bf00076953e541d9b903955be68fa1578f22
Author: Thien-Thi Nguyen <ttn@gnuvola.org>
Date: Mon, 29 Nov 2021 01:48:44 -0500
fix lex failure: use nginx comment start-character for ‘nginx’ code block
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/taler-merchant-manual.rst b/taler-merchant-manual.rst
@@ -1063,13 +1063,13 @@ follows:
if ($http_authorization !~ "(?i)ApiKey SECURITYTOKEN") {
return 401;
}
- proxy_pass ...; // as above
+ proxy_pass ...; # as above
}
location /management/ {
if ($http_authorization !~ "(?i)ApiKey SECURITYTOKEN") {
return 401;
}
- proxy_pass ...; // as above
+ proxy_pass ...; # as above
}
Here, ``SECURITYTOKEN`` should be replaced with the actual shared secret. Note