summaryrefslogtreecommitdiffstats
path: root/docs/guides
diff options
context:
space:
mode:
authorkalle (jag) <kalle.jillheden@gmail.com>2021-04-14 18:52:02 +0200
committerGitHub <noreply@github.com>2021-04-14 19:52:02 +0300
commitc1866febbde93a8ebe892d8a81d296f3d30a9bb9 (patch)
treef039f6dcc2c47b0e0c47d6df763eb086a9727b06 /docs/guides
parente4b5a0502cfef6b749c7e3b3adad20a6ef52c740 (diff)
Add docs on Nginx with IPv6 listen for certbot to work (#10473)
Diffstat (limited to 'docs/guides')
-rw-r--r--docs/guides/step-by-step/step-10.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/guides/step-by-step/step-10.md b/docs/guides/step-by-step/step-10.md
index 28ab47c67c..d1c065c513 100644
--- a/docs/guides/step-by-step/step-10.md
+++ b/docs/guides/step-by-step/step-10.md
@@ -104,6 +104,8 @@ upstream backend {
server {
listen 80;
+ # uncomment the line if you want nginx to listen on IPv6 address
+ #listen [::]:80;
# Change `example.com` to match your domain name.
server_name netdata.example.com;