blob: 7414682267fb382a68d2d7903ea98563a77ac889 (
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
|
# -----------------------------------------------------------------------------
# Sample Rhizi configuration - copy this to rhizi-server.conf
#
# -----------------------------------------------------------------------------
# General
#
development_mode = True
root_path = .
static_url_path = /static
# -----------------------------------------------------------------------------
# Network
#
listen_address = 127.0.0.1
listen_port = 8080
# -----------------------------------------------------------------------------
# Data
#
neo4j_url = http://127.0.0.1:7474
# -----------------------------------------------------------------------------
# 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
#
mail_hostname = 127.0.0.1
mail_default_sender = rhizi@localhost
feedback_recipient = feedback@localhost
# -----------------------------------------------------------------------------
# Security
#
access_control = False
user_db_path = ./user_db.db
# -----------------------------------------------------------------------------
# Client settings
#
optimized_main = False
# -----------------------------------------------------------------------------
# Rhizi
#
rzdoc__mainpage_name = Welcome Rhizi
rzdoc__name__max_length = 256
# -----------------------------------------------------------------------------
# Other
#
DEBUG = True
|