8 lines
409 B
PHP
8 lines
409 B
PHP
<?php
|
|
// Copy this file to the unalike root and change the $local_secret variable to something unique.
|
|
$local_secret = "xxxxxSomethingUniqueHerePls12345";
|
|
|
|
// It is recommended to choose a long and complicated secret (at least a 100 characters long alphanumeric string)
|
|
|
|
// Using special characters is not advised because this is sent through the HTTP(S) protocol GET method with
|
|
// god knows what encoding...
|