1
0
mirror of https://github.com/Tygs/0bin.git synced 2023-08-10 21:13:00 +03:00
0bin/zerobin/default_settings.py

34 lines
1.1 KiB
Python
Raw Normal View History

2020-08-13 15:36:42 +03:00
# Get error messages and auto reload.
# Don't set this to True in production
DEBUG = False
2020-08-13 15:36:42 +03:00
# Port and host the embedded python server should be using
HOST = "127.0.0.1"
2020-08-13 15:36:42 +03:00
PORT = "3255"
2012-05-21 20:21:06 +04:00
# Display a tiny counter for pastes created.
2012-05-21 19:14:01 +04:00
DISPLAY_COUNTER = True
2020-08-13 15:36:42 +03:00
# Refresh counter interval.
REFRESH_COUNTER = 60 # in seconds
2012-05-21 19:14:01 +04:00
2020-08-13 15:36:42 +03:00
# Names/links to insert in the footer.
# Any link with "mailto:" will be escaped to limit spam, but displayed
# correctly to the user using JS.
MENU = (
2020-08-12 15:25:22 +03:00
("Create paste", "/"), # internal link. First link will be highlited
("Github", "https://github.com/Tygs/0bin"), # external link
2020-08-11 17:37:03 +03:00
("Faq", "/faq/"), # faq
("Contact", "mailto:your@email.com"), # email
2020-08-12 15:25:22 +03:00
("Zerobin Pastebin", "https://www.0bin.net/"), # Thanks the authors :)
)
2020-08-13 15:36:42 +03:00
# Size limit of the paste content in bytes. Be careful, allowing a size too big can
# slow down the user's browser
MAX_SIZE = 1024 * 500
2020-08-13 15:36:42 +03:00
# Length of the paste-id string in the url, int from 4 to 27 (length of sha1 digest)
# total number of unique pastes can be calculated as 2^(6*PASTE_ID_LENGTH)
# for PASTE_ID_LENGTH=8, for example, it's 2^(6*8) = 281 474 976 710 656
PASTE_ID_LENGTH = 8
2020-08-12 10:19:38 +03:00