ID: 9115290086c78e29de23ef43fda98bd5c4c7edc4
31 lines
—
815B —
View raw
| # This is a bunch of settings useful for the app
defaults:
items_per_page: 50
search_results_per_page: 50
# How many topics to allow for a post
topics_per_post: 10
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
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
|