From 8c359115f9d515d358403897f34c69757adf7af6 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Tue, 16 Jun 2009 14:41:43 +0000 Subject: [PATCH] libs/lucid-http: use SERVER_ADDR as fallback --- libs/lucid-http/luasrc/lucid/http/handler/catchall.lua | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/libs/lucid-http/luasrc/lucid/http/handler/catchall.lua b/libs/lucid-http/luasrc/lucid/http/handler/catchall.lua index a5cdce534..13272d91e 100644 --- a/libs/lucid-http/luasrc/lucid/http/handler/catchall.lua +++ b/libs/lucid-http/luasrc/lucid/http/handler/catchall.lua @@ -39,7 +39,7 @@ end function Redirect.handle_GET(self, request) local target = self.target local protocol = request.env.HTTPS and "https://" or "http://" - local server + local server = request.env.SERVER_ADDR if request.env.REMOTE_ADDR and not request.env.REMOTE_ADDR:find(":") then local compare = ip.IPv4(request.env.REMOTE_ADDR) @@ -51,9 +51,8 @@ function Redirect.handle_GET(self, request) end end end - else - server = request.env.SERVER_ADDR end + if server:find(":") then server = "[" .. server .. "]" end @@ -85,4 +84,4 @@ Redirect.handle_POST = Redirect.handle_GET function Redirect.handle_HEAD(self, request) local stat, head = self:handle_GET(request) return stat, head -end \ No newline at end of file +end -- 2.11.0