🇮🇳India zuhair_ak Dubai
Thanks @cestmoi, I also had the same issue, I imported & enabled the pathauto with config using `drush cim` and I got this error, had to uninstall pathauto using drush and enable it via UI and import the config again, Thanks again
🐛 | Drupal core | Redirects being built as http://localhost:8888/drupal8 and not considered safe by RedirectResponseSubscriber
🇮🇳India zuhair_ak Dubai
#76 worked for me
🇮🇳India zuhair_ak Dubai
#273 worked for me also, Thanks @slasher13. Is there anyway we can commit this and fix the issue with multiform AJAX as a followup ticket
🇮🇳India zuhair_ak Dubai
🇮🇳India zuhair_ak Dubai
🇮🇳India zuhair_ak Dubai
Applied the patch in my local and it is working on brand new Drupal 10.2 site
🇮🇳India zuhair_ak Dubai
I also got the same error for a managed_file field type, on clicking remove button, only default themes come up
🇮🇳India zuhair_ak Dubai
For my usecase, we had Imperva CDN, so had to check their docs for their IP ranges and add it as below
$settings['reverse_proxy'] = TRUE;
// https://docs.imperva.com/howto/c85245b7 <- Imperva CDN IP range, update if doc updated
$settings['reverse_proxy_addresses'] = ['199.83.128.0/21', '198.143.32.0/19', '149.126.72.0/21', '103.28.248.0/22', '45.64.64.0/22', '185.11.124.0/22', '192.230.64.0/18', '107.154.0.0/16', '45.60.0.0/16', '45.223.0.0/16', '131.125.128.0/17', '2a02:e980::/29'];
$settings['reverse_proxy_trusted_headers'] = \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_ALL | \Symfony\Component\HttpFoundation\Request::HEADER_FORWARDED;