ansible-role-pinnwand/templates/pinnwand.toml

117 lines
5.1 KiB
TOML

{% set config = pinnwand_config %}
# Configuration file for `pinnwand`. Shows what you can adjust. More
# information can be found at `pinnwand`'s documentation:
# https://pinnwand.readthedocs.io/en/latest/ or you can file an issue at our
# GitHub: https://github.com/supakeen/pinnwand
# Database URI to connect to see: https://docs.sqlalchemy.org/en/13/core/engines.html#database-urls
# if you want to use databases other than sqlite be sure to install the
# appropriate packages and then format this url to correspond to them.
{% set dbconfig = config['database'] %}
{% if dbconfig is defined %}
database_uri = "{{ dbconfig['scheme'] }}://{{ dbconfig['username'] }}:{{ dbconfig['password'] }}@{{ dbconfig['hostname']}}:{{ dbconfig['port'] | default(5432) }}/{{ dbconfig['database'] }}"
{% else %}
database_uri = "sqlite:///:memory:"
{% endif %}
# Maximum paste size you want to allow.
paste_size = {{ config['paste_size'] | default(262144) | int}} # 256kB in bytes
# Preferred lexers. This list of lexers will appear on top of the dropdown
# on the website allowing you to preselect commonly used lexers. Note that the
# names here have to be the identifiers used by pygments, not the human names.
# If empty no preferred lexers are shown.
preferred_lexers = {{ config['preferred_lexers'] | default([]) }}
# Logo path, used to render your logo. If left out the default logo will be
# used. This file must be a png file.
{% if config['logo_path'] is defined and config['logo_path'] | length %}
logo_path = "{{ config['logo_path'] }}"
{% else %}
# logo_path = "/path/to/a/file.png"
{% endif %}
# The page path is used to find the pages listed in the page_list
page_path = "{{ config['page_path'] | default('/tmp')}}"
# This is the whitelist of files that should exist in the `page_path`
# configuration directive. `pinnwand` will look for `$file.rst` in the
# `page_path` directory and serve it at `/$file`.
{% if config['page_list'] is defined %}
page_list = [{%for page in config['page_list']%}'{{page}}', {%endfor%}]
{% else %}
page_list = ["about", "removal", "expiry"]
{% endif %}
# The footer in raw HTML, shown at the bottom of the page and handy to link to
# your previously configured pages.
{% if config['footer'] is defined and config['footer']|length %}
footer = {{ config['footer'] }}
{% else %}
footer = 'View <a href="//github.com/supakeen/pinnwand" target="_BLANK">source code</a>,the <a href="/removal">removal</a> or <a href="/expiry">expiry</a> stories, or read the <a href="/about">about</a> page.'
{% endif %}
# HTML for the 'help text' that can be shown above the paste area, if left empty no help text will be shown.
{% if config['paste_help'] is defined and config['paste_help']|length %}
paste_help = {{ config['paste_help'] }}
{% else %}
paste_help = "<p>Welcome to pinnwand, this site is a pastebin. It allows you to share code with others. If you write code in the text area below and press the paste button you will be given a link you can share with others so they can view your code as well.</p><p>People with the link can view your pasted code, only you can remove your paste and it expires automatically. Note that anyone could guess the URI to your paste so don't rely on it being private.</p>"
{% endif %}
# Email used for file reporting. If the value is not None then a href with a mailto
# link will be added to every paste page thus allowing the users to report pastes
# that may need removal.
report_email = "{{ config['report_email'] | default('maintainer@example.com') }}"
# Expiries are given by a name and their duration in seconds, if you want to do
# 'forever' set a really large number...
{% set expiries = config['expiries'] %}
{% if expiries is defined %}
{% for expiry in expiries %}
expiries.{{expiry.name}} = {{expiry.time}}
{% endfor %}
{% else %}
expiries.1hour = 3600
expiries.1day = 86400
expiries.1week = 604800
{% endif %}
# These are application level ratelimits, if you use proxies for your pinnwand
# instance you should set limits there as well. These limits describe a token
# bucket and are per-IP.
#
# The capacity is how many tokens there are available, the consumption is how
# many tokens are used by an action and the refill is how many tokens are added
# per second. So the read bucket below allows a burst of a 100 reads then another
# 2 per second.
{% set ratelimits = config['ratelimits'] %}
{% if ratelimits is defined %}
{% for bucket in ratelimits %}
ratelimit.{{ bucket.name }}.capacity = {{ bucket.capacity }}
ratelimit.{{ bucket.name }}.consume = {{ bucket.consume }}
ratelimit.{{ bucket.name }}.refill = {{ bucket.refill }}
{% endfor %}
{% else %}
ratelimit.read.capacity = 100
ratelimit.read.consume = 1
ratelimit.read.refill = 2
ratelimit.create.capacity = 2
ratelimit.create.consume = 2
ratelimit.create.refill = 1
ratelimit.delete.capacity = 2
ratelimit.delete.consume = 2
ratelimit.delete.refill = 1
{% endif %}
# pinnwand uses a naive anti-spam measure where a regex is ran over the text
# that is pasted. It then checks how large a percentage of the incoming bytes
# consist of links. If that percentage is larger than the number below the
# paste is denied. Set to a 100 to disable.
spamscore = {{ config['spamscore'] | default(50) }}