13 lines
331 B
Python
13 lines
331 B
Python
bind = "0.0.0.0:5150"
|
|
workers = 4
|
|
timeout = 120
|
|
keepalive = 5
|
|
loglevel = "debug"
|
|
errorlog = "/home/ircd/ircBridgeV3/gunicorn-error.log"
|
|
accesslog = "/home/ircd/ircBridgeV3/gunicorn-access.log"
|
|
|
|
def on_starting(server):
|
|
from irc_bot import bot
|
|
print("[GUNICORN MASTER] Starting IRC bot...")
|
|
bot.connect()
|
|
bot.start() |