2018-10-17 15:07:17 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* PrivateBin
|
|
|
|
*
|
|
|
|
* a zero-knowledge paste bin
|
|
|
|
*
|
|
|
|
* @link https://github.com/PrivateBin/PrivateBin
|
|
|
|
* @copyright 2012 Sébastien SAUVAGE (sebsauvage.net)
|
|
|
|
* @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License
|
2019-04-12 18:14:25 +02:00
|
|
|
* @version 1.2.1
|
2018-10-17 15:07:17 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
// change this, if your php files and data is outside of your webservers document root
|
|
|
|
define('PATH', '');
|
|
|
|
|
|
|
|
define('PUBLIC_PATH', __DIR__);
|
|
|
|
require PATH . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php';
|
2019-04-12 18:14:25 +02:00
|
|
|
new PrivateBin\Controller;
|