是否可以仅在localhost上运行python SimpleHTTPServer?


87

我有一个vpn连接,当我运行python -m SimpleHTTPServer时,它在0.0.0.0:8000上提供服务,这意味着可以通过本地主机我的真实IP访问它。我不希望机器人扫描我,并且对仅通过本地主机访问服务器感兴趣。

可能吗?

python -m SimpleHTTPServer 127.0.0.1:8000  # doesn't work.

也欢迎任何其他可以使用命令行立即执行的简单http服务器。


4
您可以简单地从防火墙/路由器阻止该端口上的外部连接。
Burhan Khalid 2012年

7
虽然是python2的一个好问题,但在这里可能需要注意的是,在python3中,替换http.server允许立即绑定,例如python3 -m http.server --bind 127.0.0.1 8000就足够了
humanityANDpeace

1
旁注SimpleHTTPServer单线程和阻塞的,这意味着在上一个请求结束之前,您将无法执行另一个请求。而且它不支持范围,例如从特定位置流式传输/查找媒体文件。更好的替代方法是twistedpip install twisted),您可以将其运行twistd -n web --path /。它还可以使用进行匿名FTP twistd -n ftp -p 2121 -r /。更多http服务器一线式:gist.github.com/willurd/5720255
ccpizza

Answers:


54

如果您阅读了源代码,您将看到只能在命令行上覆盖端口。如果你想改变它在服务的主机,你将需要实现test()的方法SimpleHTTPServerBaseHTTPServer自己。但这应该很容易。

这是您可以轻松实现的方法:

import sys
from SimpleHTTPServer import SimpleHTTPRequestHandler
import BaseHTTPServer


def test(HandlerClass=SimpleHTTPRequestHandler,
         ServerClass=BaseHTTPServer.HTTPServer):

    protocol = "HTTP/1.0"
    host = ''
    port = 8000
    if len(sys.argv) > 1:
        arg = sys.argv[1]
        if ':' in arg:
            host, port = arg.split(':')
            port = int(port)
        else:
            try:
                port = int(sys.argv[1])
            except:
                host = sys.argv[1]

    server_address = (host, port)

    HandlerClass.protocol_version = protocol
    httpd = ServerClass(server_address, HandlerClass)

    sa = httpd.socket.getsockname()
    print "Serving HTTP on", sa[0], "port", sa[1], "..."
    httpd.serve_forever()


if __name__ == "__main__":
    test()

并使用它:

> python server.py 127.0.0.1     
Serving HTTP on 127.0.0.1 port 8000 ...

> python server.py 127.0.0.1:9000
Serving HTTP on 127.0.0.1 port 9000 ...

> python server.py 8080          
Serving HTTP on 0.0.0.0 port 8080 ...

92

在Python 3.4和更高版本中,http.server模块接受bind参数。

根据文档

python -m http.server 8000

默认情况下,服务器将自身绑定到所有接口。选项-b /-bind指定应绑定的特定地址。例如,以下命令导致服务器仅绑定到本地主机:

python -m http.server 8000 --bind 127.0.0.1

3.4版中的新功能:引入了--bind参数。


75

正如@sberry所解释的那样,仅通过使用nicepython -m ...方法无法做到这一点,因为IP地址是在BaseHttpServer.test函数。

从命令行执行此操作而不先将代码写入文件的一种方法是

python -c 'import BaseHTTPServer as bhs, SimpleHTTPServer as shs; bhs.HTTPServer(("127.0.0.1", 8888), shs.SimpleHTTPRequestHandler).serve_forever()'

如果那仍然算作一根衬纸,则取决于您的端子宽度;-)记住起来肯定不是很容易。


4
将此添加到.bash_profile。好吃 现在我可以输入H。谢谢!- gist.github.com/cmawhorter/f2a09bcf63c68b0cff10
科里Mawhorter

4
为了使用Python 3.5.1在Windows 10上将其作为简单的http服务器工作,我必须对其进行如下python -c "import http.server as hs; hs.HTTPServer(('127.0.0.1', 8888), hs.SimpleHTTPRequestHandler).serve_forever()" 更改:请注意引号中的更改以及Base和Simple HTTP Server现在位于http.server中的事实。
亚历山大·瓦维克

我使用个人档案别名+1,我叫我的'servelocal'-有点舞会改变和转义引号来使bash语法高兴,但结果不错。
sdupton '16

非常有帮助... :)
user3145373 1919年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.