1
0
mirror of https://github.com/git/git.git synced 2025-02-06 09:44:30 +00:00

instaweb: fix ip binding for the python http.server

`git instaweb -d python` should bind the server to 0.0.0.0, while
`git instaweb -d python -l` should bind the server to 127.0.0.1.

The code had them backwards by mistake since 2eb14bb2d4
(git-instaweb: add Python builtin http.server support, 2019-01-28).

Signed-off-by: Alecs King <alecsk@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Alecs King 2025-01-10 18:13:46 +08:00 committed by Junio C Hamano
parent fbe8d3079d
commit 76baf97fa1

View File

@ -694,9 +694,9 @@ class GitWebRequestHandler(CGIHTTPRequestHandler):
return result
bind = "127.0.0.1"
bind = "0.0.0.0"
if "$local" == "true":
bind = "0.0.0.0"
bind = "127.0.0.1"
# Set our http root directory
# This is a work around for a missing directory argument in older Python versions