1
0
mirror of https://github.com/Rouji/single_php_filehost.git synced 2025-04-04 16:39:34 +00:00

use SERVER_NAME for uploader config names

This commit is contained in:
Rouji 2021-08-29 22:40:26 +02:00
parent 51ba3a429f
commit 503f5e7272

View File

@ -248,12 +248,12 @@ function purge_files()
// send a ShareX custom uploader config as .json // send a ShareX custom uploader config as .json
function send_sharex_config() function send_sharex_config()
{ {
$host = $_SERVER["HTTP_HOST"]; $name = $_SERVER["SERVER_NAME"];
$site_url = CONFIG::SITE_URL(); $site_url = CONFIG::SITE_URL();
$filename = $host.".sxcu"; $filename = $name.".sxcu";
$content = <<<EOT $content = <<<EOT
{ {
"Name": "$host", "Name": "$name",
"DestinationType": "ImageUploader, FileUploader", "DestinationType": "ImageUploader, FileUploader",
"RequestType": "POST", "RequestType": "POST",
"RequestURL": "$site_url", "RequestURL": "$site_url",
@ -270,12 +270,12 @@ EOT;
// send a Hupl uploader config as .hupl (which is just JSON) // send a Hupl uploader config as .hupl (which is just JSON)
function send_hupl_config() function send_hupl_config()
{ {
$host = $_SERVER["HTTP_HOST"]; $name = $_SERVER["SERVER_NAME"];
$site_url = CONFIG::SITE_URL(); $site_url = CONFIG::SITE_URL();
$filename = $host.".hupl"; $filename = $name.".hupl";
$content = <<<EOT $content = <<<EOT
{ {
"name": "$host", "name": "$name",
"type": "http", "type": "http",
"targetUrl": "$site_url", "targetUrl": "$site_url",
"fileParam": "file" "fileParam": "file"