mirror of https://github.com/midoks/mdserver-web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.1 KiB
46 lines
1.1 KiB
# coding:utf-8
|
|
|
|
|
|
import time
|
|
import sys
|
|
import os
|
|
chdir = os.getcwd()
|
|
sys.path.append(chdir + '/class/core')
|
|
sys.path.append("/usr/local/lib/python2.7/site-packages")
|
|
import public
|
|
import system_api
|
|
|
|
# cpu_info = system_api.system_api().getCpuInfo()
|
|
# workers = cpu_info[1] + 1
|
|
|
|
|
|
if not os.path.exists(os.getcwd() + '/logs'):
|
|
os.mkdir(os.getcwd() + '/logs')
|
|
|
|
mw_port = public.readFile('data/port.pl')
|
|
if mw_port:
|
|
mw_port.strip()
|
|
bind = []
|
|
if os.path.exists('data/ipv6.pl'):
|
|
bind.append('[0:0:0:0:0:0:0:0]:%s' % mw_port)
|
|
else:
|
|
bind.append('0.0.0.0:%s' % mw_port)
|
|
|
|
workers = 2
|
|
threads = 4
|
|
backlog = 512
|
|
reload = False
|
|
daemon = True
|
|
worker_class = 'geventwebsocket.gunicorn.workers.GeventWebSocketWorker'
|
|
timeout = 7200
|
|
keepalive = 60
|
|
preload_app = True
|
|
capture_output = True
|
|
access_log_format = '%(t)s %(p)s %(h)s "%(r)s" %(s)s %(L)s %(b)s %(f)s" "%(a)s"'
|
|
loglevel = 'info'
|
|
errorlog = chdir + '/logs/error.log'
|
|
accesslog = chdir + '/logs/access.log'
|
|
pidfile = chdir + '/logs/mw.pid'
|
|
if os.path.exists(os.getcwd() + '/data/ssl.pl'):
|
|
certfile = 'ssl/certificate.pem'
|
|
keyfile = 'ssl/privateKey.pem'
|
|
|