summaryrefslogtreecommitdiff
path: root/taler-merchant-manual.rst
diff options
context:
space:
mode:
authorThien-Thi Nguyen <ttn@gnuvola.org>2021-11-29 01:48:44 -0500
committerThien-Thi Nguyen <ttn@gnuvola.org>2021-11-29 01:48:44 -0500
commit0057dcadb37ec558936b3c9580444ba2ace7e1c3 (patch)
treedfde2d040fc9144495d9d9f047f058c8ed4d5b57 /taler-merchant-manual.rst
parentdc77bf00076953e541d9b903955be68fa1578f22 (diff)
downloaddocs-0057dcadb37ec558936b3c9580444ba2ace7e1c3.tar.gz
docs-0057dcadb37ec558936b3c9580444ba2ace7e1c3.tar.bz2
docs-0057dcadb37ec558936b3c9580444ba2ace7e1c3.zip
fix lex failure: use nginx comment start-character for ‘nginx’ code block
Diffstat (limited to 'taler-merchant-manual.rst')
-rw-r--r--taler-merchant-manual.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/taler-merchant-manual.rst b/taler-merchant-manual.rst
index 8a7f3200..0701f6ec 100644
--- 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