25 lines
909 B
Text
25 lines
909 B
Text
[server]
|
|
# The port the server will bind on
|
|
port = 4000
|
|
# This is meant for when Buranun is behind a reverse proxy
|
|
# url_prefix is added to all generated links, but nothing is done
|
|
# for requested path. It is is also used for the Path attribute for cookies
|
|
# Buranun sets
|
|
url_prefix = /board
|
|
# Buranun doesn't support encrypted connections itself, and this is meant for
|
|
# when it is behind a reverse proxy
|
|
# ssl controls whether cookies set the Secure attribute, meaning they are only
|
|
# sent over an encrypted connection
|
|
ssl = yes
|
|
# The host and port where Buranun is accessible
|
|
# outside_port can be left empty if you're using port 80 (no ssl) or 443 (ssh)
|
|
outside_host = ahti-saarelainen.zgrep.org
|
|
outside_port =
|
|
|
|
[site]
|
|
# This is the site name displayed on e.g. the index page
|
|
name = A random Buranun-based textboard
|
|
|
|
[files]
|
|
# This is the path of the database file used by Buranun
|
|
database = ./buranun.db
|