ID: b46a8ab1fd2674a7928ff4881fa1edc3dd1d88c9
36 lines
—
941B —
View raw
| # This is a bunch of settings useful for the app
defaults:
# How many posts to show per page
items_per_page: 50
search_results_per_page: 50
# How many topics to allow for a post
topics_per_post: 10
cookies:
# A secret key for signing cookies. Must be kept private.
# Used to verify that cookies haven't been tampered with.
secret: "secret random string"
mysql:
host: localhost
port: 3306
schema: freepost_freepost
# charset: utf8mb4
charset: utf8
username: freepost
password: freepost
# Emails are sent using the local sendmail MTA.
sendmail:
path: /usr/sbin/sendmail
session:
# Name to use for the session cookie
name: freepost
# Timeout in seconds for the "remember me" option.
# By default, if the user doesn't click "remember me" during login the
# session will end when the browser is closed.
# 2592000 = 30 days
remember_me: 2592000
|