2012-04-22 03:59:45 +08:00
|
|
|
<?php
|
2012-04-30 01:15:06 +08:00
|
|
|
/**
|
2016-07-11 17:58:15 +08:00
|
|
|
* PrivateBin
|
2012-04-30 01:15:06 +08:00
|
|
|
*
|
|
|
|
* a zero-knowledge paste bin
|
|
|
|
*
|
2016-07-11 17:58:15 +08:00
|
|
|
* @link https://github.com/PrivateBin/PrivateBin
|
2012-04-30 01:15:06 +08:00
|
|
|
* @copyright 2012 Sébastien SAUVAGE (sebsauvage.net)
|
2016-07-19 19:56:52 +08:00
|
|
|
* @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License
|
2020-03-22 13:44:04 +08:00
|
|
|
* @version 1.3.4
|
2012-04-30 01:15:06 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
// change this, if your php files and data is outside of your webservers document root
|
|
|
|
define('PATH', '');
|
2012-05-01 04:58:08 +08:00
|
|
|
|
2016-08-09 17:54:42 +08:00
|
|
|
define('PUBLIC_PATH', __DIR__);
|
|
|
|
require PATH . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php';
|
2018-07-29 21:17:35 +08:00
|
|
|
new PrivateBin\Controller;
|