mirror of
https://0xacab.org/johnxina/rat.git
synced 2024-12-23 13:09:08 +00:00
fix proxify, workaround for memory leak
This commit is contained in:
parent
cc0e92d2dc
commit
59897a3cb9
12
README.md
12
README.md
@ -17,15 +17,21 @@ $ . venv/bin/activate
|
|||||||
|
|
||||||
## 运行方法
|
## 运行方法
|
||||||
|
|
||||||
|
调试运行(已知在生产环境下有内存溢出):
|
||||||
|
|
||||||
```
|
```
|
||||||
(venv) $ python main.py
|
(venv) $ python main.py
|
||||||
```
|
```
|
||||||
|
|
||||||
默认配置下,你应将反向代理指向 `127.0.0.1:8885`。
|
生产环境运行:
|
||||||
|
|
||||||
|
```
|
||||||
|
(venv) $ gunicorn app:proxified --max-requests 50 --workers 2 --worker-class uvicorn.workers.UvicornWorker
|
||||||
|
```
|
||||||
|
|
||||||
|
默认参数下,你应将反向代理指向 `127.0.0.1:8000`。
|
||||||
|
|
||||||
## 配置方法
|
## 配置方法
|
||||||
|
|
||||||
打开 `shared.py` 修改 `port` 后的数字来改变端口号。
|
|
||||||
|
|
||||||
其中的 `should_fetch_comments` 用于控制是否获取楼中楼。如果浏览性能不佳可以考虑
|
其中的 `should_fetch_comments` 用于控制是否获取楼中楼。如果浏览性能不佳可以考虑
|
||||||
关闭楼中楼获取。
|
关闭楼中楼获取。
|
||||||
|
@ -47,7 +47,11 @@ class AsgiproxifyHandler():
|
|||||||
headers.pop('Server', None)
|
headers.pop('Server', None)
|
||||||
headers.pop('Date', None)
|
headers.pop('Date', None)
|
||||||
|
|
||||||
resp_headers = list(headers.items())
|
bheaders = {}
|
||||||
|
for k, v in headers.items():
|
||||||
|
bheaders[k.encode()] = v.encode()
|
||||||
|
|
||||||
|
resp_headers = list(bheaders.items())
|
||||||
return resp_headers
|
return resp_headers
|
||||||
|
|
||||||
def make_request(self, session):
|
def make_request(self, session):
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
aioflask==0.4.0
|
aioflask
|
||||||
flask==2.1.3
|
flask==2.1.3
|
||||||
|
Werkzeug==2.2.2
|
||||||
aiotieba
|
aiotieba
|
||||||
aiohttp
|
aiohttp
|
||||||
|
uvicorn[standard]
|
||||||
|
gunicorn
|
||||||
Flask-Caching
|
Flask-Caching
|
||||||
|
Loading…
Reference in New Issue
Block a user