Website/pastebin/index.php

20 lines
623 B
PHP
Raw Permalink Normal View History

2023-03-02 21:10:11 -05: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
* @version 1.3.4
*/
// change this, if your php files and data is outside of your webservers document root
2023-03-02 21:10:14 -05:00
putenv('CONFIG_PATH=/var/www/html/aki/Website/pastebin/cfg/conf.php');
define('PATH', '/var/www/html/aki/Website/pastebin/');
2023-03-02 21:10:11 -05:00
define('PUBLIC_PATH', __DIR__);
require PATH . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php';
new PrivateBin\Controller;