gpt4 book ai didi

python - 连接被拒绝——Nginx 到 Python BaseHTTPServer

转载 作者:太空宇宙 更新时间:2023-11-03 15:32:09 25 4
gpt4 key购买 nike

我正在尝试根据教程在运行 Nginx 的 Fedora 机器上设置一个简单的 Python Web 服务器;我希望 Nginx 反向代理 Python 服务器。不过,我一定做错了什么,因为当我运行服务器并尝试通过 Nginx 加载页面时,Nginx 返回 502 到浏览器并将以下内容打印到日志中:

2017/03/16 00:27:59 [error] 10613#0: *5284 connect() failed (111: Connection refused) while connecting to upstream, client: 76.184.187.130, server: tspi.io, request: "GET /leaderboard/index.html HTTP/1.1", upstream: "http://127.0.0.1:8063/leaderboard/index.html", host: "tspi.io"

这是我的 python 服务器:

#!/bin/env python
# with special thanks to the good folks at
# https://fragments.turtlemeat.com/pythonwebserver.php
# who generous taught me how to do all this tonight

import cgi

from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer
from os import curdir, sep

class BaseServer (BaseHTTPRequestHandler):

def do_GET (self):
try:
print ('Serving self.path=' + self.path)
if 'leaderboard' in self.path:
self.path = self.path[12:]
print ('self.path amended to:' + self.path)

if self.path == '/':
self.path = '/index.html'

if self.path.endswith ('.html'):
# maybe TODO is wrap this in a file IO exception handler
f_to_open = curdir + sep + self.path
f = open (f_to_open)
s = f.read()
f.close()

self.send_response (200)
self.send_header ('Content-type', 'text/html')
self.end_headers ()
self.wfile.write (s)

return

except IOError:
self.send_error (404, 'File Not Found: ' + self.path)

def do_POST (self):
try:
cytpe, pdict = cgi.parse_header(self.headers.getheader ('content-type'))
if ctype == 'multipart/form-data':
query=cgi.parse_multipart (self.rfile, pdict)
self.send_response (301)

self.endheaders()


except:
pass # What *do* you do canonically for a failed POST?

def main():
try:
server = HTTPServer (('', 8096), BaseServer)
print ('Starting BaseServer.')
server.serve_forever ()
except KeyboardInterrupt:
print ('Interrupt recieved; closing server socket')
server.socket.close()

if __name__ == '__main__':
main()

还有我的 nginx.conf:

server {
listen 443 ssl;
server_name tspi.io;
keepalive_timeout 70;

ssl_certificate /etc/letsencrypt/live/tspi.io/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/keys/0000_key-certbot.pem;
ssl_protocols TLSv1.2;

location / {
root /data/www;
}

location ~ \.(gif|jpg|png)$ {
root /data/images;
}

location /leaderboard {
proxy_pass http://localhost:8063;
}
}

我正在尝试使用 proxy_pass 将进入 tspi.io/leaderboard 的任何流量传递到 Python 服务器,同时允许 Nginx 正常提供位于/data/www 下的基本 html 页面。

当我用谷歌搜索时,我看到大量关于反向代理 PHP 没有正确配置 PHP-FPM 的内容,而且由于我根本不使用 PHP,这似乎不太可能。我还看到了有关配置 uwsgi 的内容,我不知道这是否是一个问题。不知道BaseHTTPServer是否使用uswgi;当我尝试查找 uswgi 时,它似乎是一组完全不同的类,以及编写 python 服务器的完全不同的方式。

任何帮助将不胜感激!

最佳答案

Python 代码中的端口号与 nginx 反向代理配置中提供的端口号是混合匹配的。

我还建议将主机和远程地址值发送到您的内部应用程序,以备需要时使用。

proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;

关于python - 连接被拒绝——Nginx 到 Python BaseHTTPServer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42823486/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com