index.php 497 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * PrivateBin
  4. *
  5. * a zero-knowledge paste bin
  6. *
  7. * @link https://github.com/PrivateBin/PrivateBin
  8. * @copyright 2012 Sébastien SAUVAGE (sebsauvage.net)
  9. * @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License
  10. */
  11. // change this, if your php files and data is outside of your webservers document root
  12. define('PATH', '');
  13. define('PUBLIC_PATH', __DIR__);
  14. require PATH . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php';
  15. new PrivateBin\Controller;