Initial commit of (old) code.
This commit is contained in:
commit
6808d61199
16 changed files with 2003 additions and 0 deletions
14
html/backend/empty.php
Normal file
14
html/backend/empty.php
Normal 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');
|
||||
Loading…
Add table
Add a link
Reference in a new issue