Initial commit of (old) code.

This commit is contained in:
Darren 'Tadgy' Austin 2024-08-10 23:04:58 +01:00
commit 6808d61199
16 changed files with 2003 additions and 0 deletions

14
html/backend/empty.php Normal file
View file

@ -0,0 +1,14 @@
<?php
header('HTTP/1.1 200 OK');
if (isset($_GET['cors'])) {
header('Access-Control-Allow-Origin: *');
header('Access-Control-Allow-Methods: GET, POST');
header('Access-Control-Allow-Headers: Content-Encoding, Content-Type');
}
header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0, s-maxage=0');
header('Cache-Control: post-check=0, pre-check=0', false);
header('Pragma: no-cache');
header('Connection: keep-alive');