ID: 1ccff06abb0398eb688f6e77f3c661fce11c5325
29 lines
—
749B —
View raw
| # This is a bunch of settings useful for the app
defaults:
items_per_page: 50
search_results_per_page: 50
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
|