From b6187b7df7279933b3678b6a404e9b0bd34fdb49 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Wed, 25 Sep 2019 21:57:00 +0900 Subject: [PATCH] add how to ... to the headlines Might be good for the search engines later --- .../blog/how-to-enable-ipv6-in-applications/contents.lr | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/content/u/blog/how-to-enable-ipv6-in-applications/contents.lr b/content/u/blog/how-to-enable-ipv6-in-applications/contents.lr index f8be42f..93816df 100644 --- a/content/u/blog/how-to-enable-ipv6-in-applications/contents.lr +++ b/content/u/blog/how-to-enable-ipv6-in-applications/contents.lr @@ -15,7 +15,7 @@ body: In this blog article you'll find some hints on how to enable IPv6 for various applications. -## nginx +## How to enable IPv6 in nginx The web server [nginx](https://nginx.org/) by default only listens to IPv4 if you use the standard `listen *:80;` directive. To enable IPv6, use @@ -34,7 +34,7 @@ server { ``` -## haproxy +## How to enable IPv6 in HAProxy There are various interesting configuration options in [HAProxy](https://www.haproxy.org/) related @@ -98,9 +98,10 @@ backend httpsipv6 server twitter.com ipv4@twitter.com ``` -## Lektor +## How to enable IPv6 in Lektor -The static CMS lektor by default serves on IPv4. To serve on IPv6 +The static CMS [lektor](https://www.getlektor.com/) +by default serves on IPv4. To serve on IPv6 localhost use `-h ::1`, to be globally reachable use `-h ::`. ```