Initial commit

Update .gitignore, 403.php, and 60 more files...
This commit is contained in:
2021-12-08 13:18:09 +01:00
commit b3274d1f8c
65 changed files with 2033 additions and 0 deletions

7
commons/config.php Normal file
View File

@@ -0,0 +1,7 @@
<?php if (basename(__FILE__) == basename($_SERVER["SCRIPT_FILENAME"])) { header('HTTP/1.1 403 Forbidden'); die(); } ?>
<?php
$host = "nibblepoker.lu";
$host_uri = "https://nibblepoker.lu";
$dir_commons = dirname(__FILE__);
$dir_root = realpath($dir_commons . "/../");
?>