How to reset the «Secure Base URL for Static View Files» option value by an SQL query?

The configuration key is web/secure/base_static_url:

https://github.com/magento/magento2/blob/137733b/app/code/Magento/Backend/etc/adminhtml/system.xml#L468-L472

The SQL query:

UPDATE core_config_data 
	SET value = null
	WHERE 'web/secure/base_static_url' = path
;
1 Like

See also: