gpt4 book ai didi

python - Gunicorn 配置文件在哪里?

转载 作者:IT老高 更新时间:2023-10-28 22:00:56 35 4
gpt4 key购买 nike

gunicorn 文档谈到了编辑配置文件,但我不知道它在哪里。

可能是一个简单的答案 :) 我在 Amazon Linux AMI 上。

最佳答案

答案在 gunicorn 的文档中。 http://docs.gunicorn.org/en/latest/configure.html

您可以使用 .ini 或 python 脚本指定配置文件。

例如,来自 django-skel 项目

"""gunicorn WSGI server configuration."""
from multiprocessing import cpu_count
from os import environ


def max_workers():
return cpu_count()


bind = '0.0.0.0:' + environ.get('PORT', '8000')
max_requests = 1000
worker_class = 'gevent'
workers = max_workers()

您可以使用

运行服务器
gunicorn -c gunicorn.py.ini project.wsgi

注意 project.wsgi 对应于你的 wsgi 的位置。

关于python - Gunicorn 配置文件在哪里?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12063463/

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