-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprovi_wsgi.ini.sample
executable file
·63 lines (45 loc) · 1.54 KB
/
provi_wsgi.ini.sample
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
# ---- HTTP Server ----------------------------------------------------------
[server:main]
use = egg:Paste#http
port = 7070
#host = 127.0.0.1
host = 0.0.0.0
use_threadpool = true
threadpool_workers = 10
[filter:gzip]
use = egg:Paste#gzip
# ---- Protein Viewer -------------------------------------------------
[app:main]
# Specifies the factory for the universe WSGI application
paste.app_factory = provi.app:app_factory
# Session support (beaker)
#session.type = file
session.type = memory
session.lock_dir = %(here)s/database/beaker_sessions/lock
session.data_dir = %(here)s/database/beaker_sessions/data
session.key = provisessions
session.secret = changethisinproduction
session.auto = True
# Serving static files (needed if running standalone)
static_enabled = True
static_cache_time = 360
static_dir = %(here)s/app/static/
static_favicon_dir = %(here)s/app/static/favicon.ico
# serving jmol and jalview applets
jmol_dir = %(here)s/app/static/applet/jmol/
jalview_dir = %(here)s/app/static/applet/jalview/
# tmp dir accessible from web
web_tmp_dir = %(here)s/app/static/tmp/
# serving app html files
app_dir = %(here)s/app/static/html/
galaxy_url = http://127.0.0.1:9090
provi_url = http://127.0.0.1:7070
example_directories = showcase:%(here)s/app/static/data/showcase/
galaxy_import_dir = %(here)s/app/tmp/
# ---- Logging and Debugging ------------------------------------------------
# Verbosity of log messages
log_level = DEBUG
#log_level = WARNING
debug = False
# Interactive debugging - NEVER enable this on a public site
use_interactive = True