mirror of
https://github.com/librespeed/speedtest.git
synced 2026-08-27 03:46:58 +00:00
Major project restructuring and unification with mpot branch
This commit is contained in:
parent
2729365619
commit
c3e576ddba
27 changed files with 2054 additions and 1175 deletions
12
backend/empty.php
Normal file
12
backend/empty.php
Normal 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");
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue