mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2024-03-22 13:10:41 +08:00
19 lines
485 B
PHP
19 lines
485 B
PHP
<?php
|
|
/**
|
|
* ZeroBin
|
|
*
|
|
* a zero-knowledge paste bin
|
|
*
|
|
* @link http://sebsauvage.net/wiki/doku.php?id=php:zerobin
|
|
* @copyright 2012 Sébastien SAUVAGE (sebsauvage.net)
|
|
* @license http://www.opensource.org/licenses/zlib-license.php The zlib/libpng License
|
|
* @version 0.20
|
|
*/
|
|
|
|
// change this, if your php files and data is outside of your webservers document root
|
|
define('PATH', '');
|
|
|
|
define('PUBLIC_PATH', dirname(__FILE__));
|
|
require PATH . 'lib/auto.php';
|
|
new zerobin;
|