1 Star 0 Fork 5

gagaboy/gps2city

forked from liaozhaoyan/gps2city 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
server_conf.py 1.56 KB
一键复制 编辑 原始数据 按行查看 历史
gagaboy 提交于 2022-07-21 01:22 . (1)更新最新的高德数据
# gunicorn config
# import logging
# import logging.handlers
# from logging.handlers import WatchedFileHandler
# import os
# import multiprocessing
bind = '0.0.0.0:8080' #绑定ip和端口号
backlog = 512 #监听队列,未决连接的最大数量,即等待服务的客户的数量。必须是正整数,一般设定在64~2048的范围内,一般设置为2048,超过这个数字将导致客户端在尝试连接时错误。
# chdir = '/home/test/server/bin' #gunicorn要切换到的目的工作目录
timeout = 30 #超时
# workers = multiprocessing.cpu_count() * 2 + 1 #进程数: CPU数 * 2 + 1
workers = 2
worker_class = 'sync' #默认的是sync模式
threads = 2 #指定每个进程开启的线程数
loglevel = 'info' #日志级别,这个日志级别指的是错误日志的级别,而访问日志的级别无法设置
access_log_format = '%(t)s %(p)s %(h)s "%(r)s" %(s)s %(L)s %(b)s %(f)s" "%(a)s"' #设置gunicorn访问日志格式,错误日志无法设置
"""
其每个选项的含义如下:
h remote address
l '-'
u currently '-', may be user name in future releases
t date of the request
r status line (e.g. ``GET / HTTP/1.1``)
s status
b response length or '-'
f referer
a user agent
T request time in seconds
D request time in microseconds
L request time in decimal seconds
p process ID
"""
accesslog = "./log/gunicorn_access.log" #访问日志文件
errorlog = "./log/gunicorn_error.log" #错误日志文件
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/gagaboy_admin/gps2city.git
git@gitee.com:gagaboy_admin/gps2city.git
gagaboy_admin
gps2city
gps2city
master

搜索帮助