EngineGP/system/data/boost.php
Sergei Solovev 276ec7f3eb Updating the server name reference in code
This change replaces the use of $_SERVER['SERVER_NAME'] with $_SERVER['HTTP_HOST'] throughout the codebase. The modification ensures consistency and compliance with best practices, since $_SERVER['HTTP_HOST'] is often used to extract the host header from an HTTP request. This update may improve compatibility and security, especially in scenarios where the Host header plays a key role in proper server configuration and routing. Please review and test the changes carefully to ensure smooth functionality in different environments.
2023-12-23 04:50:14 +03:00

20 lines
851 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
if (!DEFINED('EGP'))
exit(header('Refresh: 0; URL=http://' . $_SERVER['HTTP_HOST'] . '/404'));
$aBoost = array(
'cs' => array(
'boost' => array(),
'mon' => array(
'site' => '', // адрес сайта раскрутки
'api' => '', // адрес API сайта раскрутки
'key' => '', // секретный ключ для API
'services' => array(), // array(номер услуги) - выборка (номер услуги либо кол-во кругов)
'circles' => array(), // array(номер услуги => кол-во кругов) - выборка
'price' => array(), // array(номер услуги => цена)
'type' => 'def' // тип работы с API сайта раскрутки
)
)
);
?>