blob: a5358dc118020b1f427aa7ce98e3c41cdf3f6a22 (
plain)
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
|
# -----------------------------------------------------------------------------
# Sample Rhizi configuration - copy this to rhizi-server.conf
#
# Rhizi configuration values are documented in source code.
#
# -----------------------------------------------------------------------------
# General
#
development_mode = True
#root_path = .
static_url_path = /static
# -----------------------------------------------------------------------------
# Network
#
listen_address = 127.0.0.1
listen_port = 8080
reverse_proxy_host =
reverse_proxy_port =
# -----------------------------------------------------------------------------
# Database
#
neo4j_url = http://127.0.0.1:7474
neo4j_user = neo4j
neo4j_pw = neo4j
# -----------------------------------------------------------------------------
# Logging
#
log_level = debug
log_path = rhizi-server.log
# -----------------------------------------------------------------------------
# Flask Configuration
# - [!] SERVER_NAME: if adding ':port', this should match listen_port
#
#SERVER_NAME = rhizi.local:8080
SECRET_KEY = notverysecretbutpeppyyaya
# use with HTTPS: SESSION_COOKIE_SECURE = True
# -----------------------------------------------------------------------------
# Mail
#
mta_host = 127.0.0.1
mta_port = 25
mail_default_sender = rhizi@localhost
feedback_recipient = feedback@localhost
# -----------------------------------------------------------------------------
# Security
#
access_control = True
user_db_path = ./deploy-local/etc/user_db.db
acl__singup__email_domain =
# -----------------------------------------------------------------------------
# Client settings
#
optimized_main = False
# -----------------------------------------------------------------------------
# Rhizi
#
rzdoc__mainpage_name = Welcome Rhizi
rzdoc__name__max_length = 256
# -----------------------------------------------------------------------------
# Other
#
DEBUG = True
|