20 lines
490 B
INI
20 lines
490 B
INI
[http]
|
|
# TCP socket to listen on.
|
|
# Must not be already used by something else.
|
|
listen = 127.0.0.1:5000
|
|
# How many requests per minute are allowed
|
|
# before a rate-limit happens.
|
|
requests = 10
|
|
[mai]
|
|
# Drop privilege to the user and group specified.
|
|
# When only the user is specified, the default group of the user will
|
|
# be used.
|
|
#
|
|
# user = www
|
|
# group = www
|
|
[paths]
|
|
# Where to locate resources such as CSS, etc
|
|
static = ./static
|
|
# Where to locate the pages to be served
|
|
templates = ./views
|