aboutsummaryrefslogtreecommitdiffhomepage
path: root/ipv6.sh
diff options
context:
space:
mode:
authorthomas <me@thomasanderson.cloud>2023-09-08 01:44:07 -0400
committerBastien Wirtz <bastien.wirtz@gmail.com>2023-10-21 05:16:20 -0700
commitce2d3e945a906e56ef43ef29d329a9f39314fcef (patch)
tree49f2a557fe5ead1df49e6baacd33343d01c05341 /ipv6.sh
parenta3c5b4ac9dd1ddf2b52fff48ea860c067fb05cf9 (diff)
downloadhomer-ce2d3e945a906e56ef43ef29d329a9f39314fcef.tar.gz
homer-ce2d3e945a906e56ef43ef29d329a9f39314fcef.tar.zst
homer-ce2d3e945a906e56ef43ef29d329a9f39314fcef.zip
fix: allow disabling IPv6
Diffstat (limited to 'ipv6.sh')
-rwxr-xr-xipv6.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/ipv6.sh b/ipv6.sh
new file mode 100755
index 0000000..c013ed6
--- /dev/null
+++ b/ipv6.sh
@@ -0,0 +1,6 @@
1#!/bin/sh
2
3# Enable IPV6 if needed
4if test -z "$IPV6_DISABLE"; then
5 echo '$SERVER["socket"] == "[::]:" + env.PORT { }'
6fi