diff options
Diffstat (limited to 'patches')
-rw-r--r-- | patches/yesod-bin.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/patches/yesod-bin.patch b/patches/yesod-bin.patch new file mode 100644 index 00000000..ac0fe42a --- /dev/null +++ b/patches/yesod-bin.patch | |||
@@ -0,0 +1,13 @@ | |||
1 | diff --git a/Devel.hs b/Devel.hs | ||
2 | index 4289317..c951e37 100644 | ||
3 | --- a/Devel.hs | ||
4 | +++ b/Devel.hs | ||
5 | @@ -144,7 +144,7 @@ reverseProxy opts appPortVar = do | ||
6 | appPort <- atomically $ readTVar appPortVar | ||
7 | return $ | ||
8 | ReverseProxy.WPRProxyDest | ||
9 | - $ ProxyDest "127.0.0.1" appPort) | ||
10 | + $ ProxyDest "::1" appPort) | ||
11 | def | ||
12 | { wpsOnExc = \e req f -> onExc e req >>= f | ||
13 | , wpsTimeout = | ||