-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapache.ini.example
More file actions
74 lines (60 loc) · 1.71 KB
/
apache.ini.example
File metadata and controls
74 lines (60 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[app:main]
use = egg:aleksi
pyramid.includes = pyramid_tm pyramid_debugtoolbar
wiktionary_db_dir = /opt/enwikt/
libvoikko_dir = /opt/lib
voikkofi_dir = /opt/voikko
spanish_morphology_path = %(here)s/spanish-morphology
SOCIAL_AUTH_GOOGLE_OAUTH2_KEY = none
SOCIAL_AUTH_GOOGLE_OAUTH2_SECRET = none
smtp_endpoint = email-smtp.us-east-1.amazonaws.com
base_dir = %(here)s
app_dir = %(here)s/aleksi/
sqlalchemy.url = sqlite:///%(here)s/aleksi.sqlite
cached_website_dir = %(here)s/aleksi/content/websites/html/
website_snapshot_dir = %(here)s/aleksi/content/websites/snapshots/
phantomjs_script_path = %(here)s/phantomjs_scripts/
WiktionaryParser_jarfile = %(here)s/WiktionaryParser/target/WiktionaryParser-1.0-jar-with-dependencies.jar
session.data_dir = %(here)s/data/sessions/data
session.lock_dir = %(here)s/data/sessions/lock
fail_on_remote_call = false
remote = true
session.type = file
session.key = session_key
session.secret = mysecret
session.cookie_on_exception = true
[server:main]
use = egg:waitress#main
host = 0.0.0.0
port = 6543
# Begin logging configuration
[loggers]
keys = root, {{package_logger}}
[handlers]
keys = console, filelog
[formatters]
keys = generic
[logger_root]
level = INFO
handlers = console, filelog
[logger_sqlalchemy.engine.base.Engine]
level = INFO
handlers =
qualname = sqlalchemy.engine.base.Engine
[logger_{{package_logger}}]
level = DEBUG
handlers =
qualname = {{package}}
[handler_console]
class = StreamHandler
args = (sys.stderr,)
level = NOTSET
formatter = generic
[handler_filelog]
class = FileHandler
args = ('%(here)s/aleksi.log','a')
level = INFO
formatter = generic
[formatter_generic]
format = LOG: %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s
# End logging configuration