2012-04-21 19:59:45 +00:00
|
|
|
<?php
|
2012-04-29 17:15:06 +00:00
|
|
|
/**
|
2016-07-11 09:58:15 +00:00
|
|
|
* PrivateBin
|
2012-04-29 17:15:06 +00:00
|
|
|
*
|
|
|
|
* a zero-knowledge paste bin
|
|
|
|
*
|
2016-07-11 09:58:15 +00:00
|
|
|
* @link https://github.com/PrivateBin/PrivateBin
|
2012-04-29 17:15:06 +00:00
|
|
|
* @copyright 2012 Sébastien SAUVAGE (sebsauvage.net)
|
|
|
|
* @license http://www.opensource.org/licenses/zlib-license.php The zlib/libpng License
|
2016-05-21 07:15:52 +00:00
|
|
|
* @version 0.22
|
2012-04-29 17:15:06 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
// change this, if your php files and data is outside of your webservers document root
|
|
|
|
define('PATH', '');
|
2012-04-30 20:58:08 +00:00
|
|
|
|
2015-09-05 00:24:56 +00:00
|
|
|
define('PUBLIC_PATH', dirname(__FILE__));
|
2012-04-30 20:58:08 +00:00
|
|
|
require PATH . 'lib/auto.php';
|
2016-07-11 09:58:15 +00:00
|
|
|
new privatebin;
|