53 lines
1,007 B
INI
53 lines
1,007 B
INI
# EesyVPN Web - Development environment configuration
|
|
#
|
|
# The %(here)s variable will be replaced with the parent directory of this file.
|
|
|
|
[DEFAULT]
|
|
debug = true
|
|
# Uncomment and replace with the address which should receive any error reports
|
|
#email_to = you@yourdomain.com
|
|
smtp_server = localhost
|
|
from_address = myco-server@localhost
|
|
dbpass = myP@ssw0rd
|
|
|
|
[server:main]
|
|
use = egg:Paste#http
|
|
host = 0.0.0.0
|
|
port = 8765
|
|
|
|
[app:main]
|
|
use = egg:MyCoServer
|
|
|
|
|
|
# Logging configuration
|
|
[loggers]
|
|
keys = root, mycoserver, mycoserver_router
|
|
|
|
[handlers]
|
|
keys = console
|
|
|
|
[formatters]
|
|
keys = generic
|
|
|
|
[logger_root]
|
|
level = DEBUG
|
|
handlers = console
|
|
|
|
[logger_mycoserver]
|
|
level = DEBUG
|
|
handlers =
|
|
qualname = mycoserver
|
|
|
|
[logger_mycoserver_router]
|
|
level = DEBUG
|
|
handlers =
|
|
qualname = mycoserver.router
|
|
|
|
[handler_console]
|
|
class = StreamHandler
|
|
args = (sys.stderr,)
|
|
formatter = generic
|
|
|
|
[formatter_generic]
|
|
format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s:%(funcName)s line %(lineno)d] %(message)s
|
|
datefmt = %H:%M:%S
|