This repository has been archived by the owner on Sep 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.ini.sample
69 lines (60 loc) · 1.67 KB
/
config.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
64
65
66
67
68
69
# Field name: debug
# Type: bool
# Default Value: False
# Production Value: False
# Development Value: True
# Usage:
# Turn on this flag to make the tornado.web able to run under debug mode.
#debug=False
# Field name: xheaders
# Type: bool
# Default Value: False
# Usage:
# If xheaders is True, we support the X-Real-Ip/X-Forwarded-For and X-Scheme/X-
# Forwarded-Proto headers, which override the remote IP and URI scheme/protocol
# for all requests. These headers are useful when running Tornado behind a reverse
# proxy or load balancer.
#xheaders=False
# Field name:port
# Type:int
# Default Value:80
# Usage:
# Indicates the port on which tornado will be listened.
#port=80
# Field name:addr
# Type: string
# Default Value:"127.0.0.1"
# Usage
# Indates the address on which tornado will be listened.
#addr="127.0.0.1"
# Field name:compress_response
# Type:bool
# Default Value:False
# Usage:
# Open it if you want to compress the response.
#compress_response=False
# Field name:config_file
# Default Value:"config.ini"
# Usage:
# Define the name and/or location of the config file.
#config_file="config.ini"
# Field name:document_location
# Default Value:"documents"
# Usage:
# Redefine the location of your documents. DO NOT ADD SLASHES AFTER YOUR LOCATION!
#document_location="documents"
# Field name:domain
# Default Value:"localhost"
# Usage:
# The URL displayed on your website.
#domain="localhost"
# Field name:comment
# Default Value:False
# Usage:
# Whether you want to turn comment on. Use disqus as default.
#comment=False
# Field name:comment_js
# Default Value:"none"
# Usage:
# Place "s.src" in disqus comment script
#comment_js="//xxxx.disqus.com/embed.js"