Major project restructuring and unification with mpot branch

This commit is contained in:
dosse91 2019-06-30 07:03:06 +02:00
parent 2729365619
commit c3e576ddba
27 changed files with 2054 additions and 1175 deletions

12
backend/empty.php Normal file
View file

@ -0,0 +1,12 @@
<?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");
?>