Trusted host

Jhorvath képe

(Környezet: D8.9.9+postgres13.1+php7.4+WindoswsIIS10)

A trusted_host_patterns beállítással nem tudok előre jutni.

Setting.php-ben:
$settings['trusted_host_patterns'] = array(
'^site\.ofi39\.hu$',
);

Az ismerős hibaüzenet: Not enabled
The trusted_host_patterns setting is not configured in settings.php.

Mit lehet itt elrontani?

Melyik modulhoz, modulokhoz kapcsolódik a téma?: 
Drupal verzió: 
HF leon képe

/* Részlet a settings.php-ból (\sites\default\files\settings.php) a végén a fenti beállítással.
*/

//Részlet kezdete:

/**
* Trusted host configuration.
*
* Drupal core can use the Symfony trusted host mechanism to prevent HTTP Host
* header spoofing.
*
* To enable the trusted host mechanism, you enable your allowable hosts
* in $settings['trusted_host_patterns']. This should be an array of regular
* expression patterns, without delimiters, representing the hosts you would
* like to allow.
*
* For example:
* @code
* $settings['trusted_host_patterns'] = [
* '^www\.example\.com$',
* ];
* @endcode
* will allow the site to only run from www.example.com.
*
* If you are running multisite, or if you are running your site from
* different domain names (eg, you don't redirect http://www.example.com to
* http://example.com), you should specify all of the host patterns that are
* allowed by your site.
*
* For example:
* @code
* $settings['trusted_host_patterns'] = [
* '^example\.com$',
* '^.+\.example\.com$',
* '^example\.org$',
* '^.+\.example\.org$',
* ];
* @endcode
* will allow the site to run off of all variants of example.com and
* example.org, with all subdomains included.
*/

$settings['trusted_host_patterns'] = [
'^site\.ofi39\.hu$',
];

//Részlet vége

Tehát a mintát kihoztad a /* */ kommenten kívülre?

0
0
Jhorvath képe

Persze, hogy nem! Nem vettem észre, hogy a minta után betéve a saját értékem, az még mindig comment szekcióban van.
Notepad++ -ban alkotok valamilyen stílus beállítást, hogy színnel, custom fonttal üsse ki a szemem a kommentezett sor.

Köszönet!!!

0
0