2017-10-08 13:03:53 +08:00
; < ? php http_response_code ( 403 ); /*
2016-08-13 00:23:15 +08:00
; config file for PrivateBin
2016-09-04 00:12:24 +08:00
;
2016-08-13 00:23:15 +08:00
; An explanation of each setting can be find online at https :// github . com / PrivateBin / PrivateBin / wiki / Configuration .
2012-04-30 01:15:06 +08:00
2012-05-20 05:59:41 +08:00
[ main ]
2017-01-01 23:33:11 +08:00
; ( optional ) set a project name to be displayed on the website
; name = " PrivateBin "
2015-08-31 06:01:35 +08:00
; enable or disable the discussion feature , defaults to true
discussion = true
; preselect the discussion feature , defaults to false
opendiscussion = false
2012-04-30 01:15:06 +08:00
2015-09-12 23:33:16 +08:00
; enable or disable the password feature , defaults to true
password = true
2015-08-18 05:18:33 +08:00
2015-09-17 04:51:48 +08:00
; enable or disable the file upload feature , defaults to false
fileupload = false
2015-08-30 02:29:14 +08:00
; preselect the burn - after - reading feature , defaults to false
2013-10-31 06:54:42 +08:00
burnafterreadingselected = false
2015-09-19 20:22:29 +08:00
; which display mode to preselect by default , defaults to " plaintext "
2015-09-12 23:33:16 +08:00
; make sure the value exists in [ formatter_options ]
2015-09-19 20:22:29 +08:00
defaultformatter = " plaintext "
2015-09-12 23:33:16 +08:00
; ( optional ) set a syntax highlighting theme , as found in css / prettify /
; syntaxhighlightingtheme = " sons-of-obsidian "
2015-08-31 06:01:35 +08:00
2017-01-08 03:35:23 +08:00
; size limit per paste or comment in bytes , defaults to 2 Mebibytes
2012-05-20 05:59:41 +08:00
sizelimit = 2097152
2017-01-08 17:02:07 +08:00
; template to include , default is " bootstrap " ( tpl / bootstrap . php )
2015-08-24 00:08:45 +08:00
template = " bootstrap "
2013-11-01 05:24:40 +08:00
2015-08-18 05:18:33 +08:00
; ( optional ) notice to display
; notice = " Note: This is a test service: Data may be deleted anytime. Kittens will die if you abuse this service. "
2016-07-10 17:02:31 +08:00
; by default PrivateBin will guess the visitors language based on the browsers
2015-09-19 17:21:13 +08:00
; settings . Optionally you can enable the language selection menu , which uses
; a session cookie to store the choice until the browser is closed .
languageselection = false
2015-10-19 02:38:07 +08:00
; set the language your installs defaults to , defaults to English
; if this is set and language selection is disabled , this will be the only language
; languagedefault = " en "
2016-01-31 16:56:06 +08:00
; ( optional ) URL shortener address to offer after a new paste is created
; it is suggested to only use this with self - hosted shorteners as this will leak
; the pastes encryption key
; urlshortener = " https://shortener.example.com/api?link= "
2017-12-25 21:59:15 +08:00
; ( optional ) Let users create a QR code for sharing the paste URL with one click .
; It works both when a new paste is created and when you view a paste .
; qrcode = true
2016-08-10 23:41:46 +08:00
; ( optional ) IP based icons are a weak mechanism to detect if a comment was from
; a different user when the same username was used in a comment . It might be
; used to get the IP of a non anonymous comment poster if the server salt is
; leaked and a SHA256 HMAC rainbow table is generated for all ( relevant ) IPs .
; Can be set to one these values : none / vizhash / identicon ( default ) .
; icon = none
2016-07-18 16:14:38 +08:00
2016-08-09 20:46:32 +08:00
; Content Security Policy headers allow a website to restrict what sources are
; allowed to be accessed in its context . You need to change this if you added
; custom scripts from third - party domains to your templates , e . g . tracking
; scripts or run your site behind certain DDoS - protection services .
; Check the documentation at https :// content - security - policy . com /
2017-02-02 01:34:13 +08:00
; Note : If you use a bootstrap theme , you can remove the allow - popups from the sandbox restrictions .
2018-07-01 20:59:24 +08:00
; By default this disallows to load images from third - party servers , e . g . when they are embedded in pastes . If you wish to allow that , you can adjust the policy here . See https :// github . com / PrivateBin / PrivateBin / wiki / FAQ #why-does-not-it-load-embedded-images for details.
2019-06-28 02:31:10 +08:00
; cspheader = " default-src 'none'; manifest-src 'self'; connect-src *; script-src 'self' 'unsafe-eval'; style-src 'self'; font-src 'self'; img-src 'self' data: blob:; media-src blob:; object-src blob:; sandbox allow-same-origin allow-scripts allow-forms allow-popups allow-modals "
2016-08-09 20:46:32 +08:00
2016-07-11 17:58:15 +08:00
; stay compatible with PrivateBin Alpha 0.19 , less secure
2016-07-06 17:37:13 +08:00
; if enabled will use base64 . js version 1.7 instead of 2.1 . 9 and sha1 instead of
; sha256 in HMAC for the deletion token
2019-06-24 01:45:40 +08:00
; zerobincompatibility = false
2016-07-06 17:37:13 +08:00
2019-06-24 01:45:40 +08:00
; Enable or disable the warning message when the site is served over an insecure
; connection ( insecure HTTP instead of HTTPS ), defaults to true .
2019-06-22 01:50:40 +08:00
; Secure transport methods like Tor and I2P domains are automatically whitelisted .
; It is ** strongly discouraged ** to disable this .
; See https :// github . com / PrivateBin / PrivateBin / wiki / FAQ #why-does-it-show-me-an-error-about-an-insecure-connection for more information.
2019-06-24 01:45:40 +08:00
; httpwarning = true
; Pick compression algorithm or disable it . Only applies to pastes / comments
; created after changing the setting .
; Can be set to one these values : none / zlib ( default ) .
; compression = zlib
2019-06-18 03:40:37 +08:00
2013-10-31 06:54:42 +08:00
[ expire ]
; expire value that is selected per default
; make sure the value exists in [ expire_options ]
2015-08-23 04:46:35 +08:00
default = " 1week "
2013-10-31 06:54:42 +08:00
[ expire_options ]
; Set each one of these to the number of seconds in the expiration period ,
; or 0 if it should never expire
5 min = 300
10 min = 600
1 hour = 3600
1 day = 86400
1 week = 604800
; Well this is not * exactly * one month , it ' s 30 days :
1 month = 2592000
1 year = 31536000
never = 0
2015-09-12 23:33:16 +08:00
[ formatter_options ]
; Set available formatters , their order and their labels
plaintext = " Plain Text "
syntaxhighlighting = " Source Code "
markdown = " Markdown "
2012-05-20 05:59:41 +08:00
[ traffic ]
; time limit between calls from the same IP address in seconds
2013-10-31 06:54:42 +08:00
; Set this to 0 to disable rate limiting .
2012-05-20 05:59:41 +08:00
limit = 10
2015-09-19 04:31:01 +08:00
; ( optional ) if your website runs behind a reverse proxy or load balancer ,
; set the HTTP header containing the visitors IP address , i . e . X_FORWARDED_FOR
; header = " X_FORWARDED_FOR "
; directory to store the traffic limits in
2012-05-20 05:59:41 +08:00
dir = PATH " data "
2012-05-01 04:58:08 +08:00
2016-07-18 15:13:23 +08:00
[ purge ]
; minimum time limit between two purgings of expired pastes , it is only
; triggered when pastes are created
2016-07-18 20:47:32 +08:00
; Set this to 0 to run a purge every time a paste is created .
2016-07-18 15:13:23 +08:00
limit = 300
; maximum amount of expired pastes to delete in one purge
; Set this to 0 to disable purging . Set it higher , if you are running a large
; site
batchsize = 10
; directory to store the purge limit in
dir = PATH " data "
2012-05-20 05:59:41 +08:00
[ model ]
2012-04-30 01:15:06 +08:00
; name of data model class to load and directory for storage
2016-08-09 17:54:42 +08:00
; the default model " Filesystem " stores everything in the filesystem
class = Filesystem
2015-08-31 06:01:35 +08:00
[ model_options ]
dir = PATH " data "
2012-04-30 01:15:06 +08:00
2012-05-20 05:59:41 +08:00
;[ model ]
2012-04-30 01:15:06 +08:00
; example of DB configuration for MySQL
2016-08-09 17:54:42 +08:00
; class = Database
2012-05-20 05:59:41 +08:00
;[ model_options ]
2016-07-11 17:58:15 +08:00
; dsn = " mysql:host=localhost;dbname=privatebin;charset=UTF8 "
; tbl = " privatebin_ " ; table prefix
; usr = " privatebin "
2012-05-20 05:59:41 +08:00
; pwd = " Z3r0P4ss "
; opt [ 12 ] = true ; PDO :: ATTR_PERSISTENT
2012-04-30 01:15:06 +08:00
2012-05-20 05:59:41 +08:00
;[ model ]
2012-04-30 01:15:06 +08:00
; example of DB configuration for SQLite
2016-08-09 17:54:42 +08:00
; class = Database
2015-08-31 06:01:35 +08:00
;[ model_options ]
; dsn = " sqlite: " PATH " data/db.sq3 "
; usr = null
; pwd = null
2016-07-06 17:37:13 +08:00
; opt [ 12 ] = true ; PDO :: ATTR_PERSISTENT