mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-05 22:53:02 +00:00
localhost_frssoft
f9702f81a9
Patch from: https://git.freesoftwareextremist.com/bloat/commit/?id=887ed241d64ba5db3fd3d87194fb5595e5ad7d73 Patch description: Use cookies for session Remove the server side session storage and store all the session related data in the client side cookies. This decreases the exposure of the auth tokens. It also simplifies the installation process as bloat no longer requires write access to the filesystem. This is a breaking change, all the existing sessions will stop working.
46 lines
1.6 KiB
Plaintext
46 lines
1.6 KiB
Plaintext
# Format:
|
|
# - Lines starting with a '#' are ignored
|
|
# - Key and Value are separated by a single '='
|
|
# - Leading and trailing white spaces in Key and Value are ignored
|
|
# - Quoting and multi-line values are not supported
|
|
|
|
# Address to listen to. Value can be of "HOSTNAME:PORT" or "IP:PORT" form. In
|
|
# case of empty HOSTNAME or IP, "0.0.0.0:PORT" is used.
|
|
# Example: ":8080", "bloat.mydomain.com"
|
|
listen_address=127.0.0.1:8080
|
|
|
|
# Full URL of the website. Users will be redirected to this URL after
|
|
# authentication.
|
|
# Example: "http://localhost:8080", "https://bloat.mydomain.com"
|
|
client_website=http://127.0.0.1:8080
|
|
|
|
# Name of the client.
|
|
client_name=custom bloat
|
|
|
|
# Mastadon scopes used by the client.
|
|
# See https://docs.joinmastodon.org/api/oauth-scopes/
|
|
client_scope=read write follow
|
|
|
|
# Path of directory containing template files.
|
|
templates_path=templates
|
|
|
|
# Path of directory containing static files (CSS and JS).
|
|
static_directory=static
|
|
|
|
# Supported post formats. Value is a list of key:value pair separated by a ','.
|
|
# Empty value will disable the format selection in frontend.
|
|
post_formats=PlainText:text/plain,HTML:text/html,Markdown:text/markdown,BBCode:text/bbcode
|
|
|
|
# Log file. Will log to stdout if value is empty.
|
|
# log_file=log
|
|
|
|
# In single instance mode, bloat will not ask for instance domain name and
|
|
# user will be directly redirected to login form. User login from other
|
|
# instances is not allowed in this mode.
|
|
# Empty value disables single instance mode.
|
|
# single_instance=pl.mydomain.com
|
|
|
|
# Path to custom CSS. Value can be a file path relative to the static directory.
|
|
# or a URL starting with either "http://" or "https://".
|
|
# custom_css=custom.css
|