@@ -55,7 +55,7 @@ class Config extends \Magento\PageCache\Model\Config
55
55
/**
56
56
* Magento Error Page Response Object Name
57
57
*/
58
- const ERROR_PAGE_RESPONSE_OBJECT = ' magentomodule_error_page_response_object ' ;
58
+ const ERROR_PAGE_RESPONSE_OBJECT = self :: FASTLY_MAGENTO_MODULE . ' _error_page_response_object ' ;
59
59
60
60
/**
61
61
* WAF Page Response Object Name
@@ -85,7 +85,7 @@ class Config extends \Magento\PageCache\Model\Config
85
85
/**
86
86
* Blocking setting name
87
87
*/
88
- const BLOCKING_SETTING_NAME = ' magentomodule_blocking_recv ' ;
88
+ const BLOCKING_SETTING_NAME = self :: FASTLY_MAGENTO_MODULE . ' _blocking_recv ' ;
89
89
90
90
/**
91
91
* Rate Limiting snippets directory path
@@ -100,7 +100,7 @@ class Config extends \Magento\PageCache\Model\Config
100
100
/**
101
101
* Rate Limiting setting name
102
102
*/
103
- const RATE_LIMITING_SETTING_NAME = ' magentomodule_rate_limiting ' ;
103
+ const RATE_LIMITING_SETTING_NAME = self :: FASTLY_MAGENTO_MODULE . ' _rate_limiting ' ;
104
104
105
105
/**
106
106
* WAF snippets directory path
@@ -115,7 +115,7 @@ class Config extends \Magento\PageCache\Model\Config
115
115
/**
116
116
* WAF setting name
117
117
*/
118
- const WAF_SETTING_NAME = ' magentomodule_waf_recv ' ;
118
+ const WAF_SETTING_NAME = self :: FASTLY_MAGENTO_MODULE . ' _waf_recv ' ;
119
119
120
120
/**
121
121
* Authentication snippets directory path
@@ -130,12 +130,12 @@ class Config extends \Magento\PageCache\Model\Config
130
130
/**
131
131
* Authentication dictionary name
132
132
*/
133
- const AUTH_DICTIONARY_NAME = ' magentomodule_basic_auth ' ;
133
+ const AUTH_DICTIONARY_NAME = self :: FASTLY_MAGENTO_MODULE . ' _basic_auth ' ;
134
134
135
135
/**
136
136
* Image optimization setting name
137
137
*/
138
- const IMAGE_SETTING_NAME = ' magentomodule_image_optimization_recv ' ;
138
+ const IMAGE_SETTING_NAME = self :: FASTLY_MAGENTO_MODULE . ' _image_optimization_recv ' ;
139
139
140
140
/**
141
141
* Force TLS snippet path
@@ -145,12 +145,12 @@ class Config extends \Magento\PageCache\Model\Config
145
145
/**
146
146
* Force TLS setting name
147
147
*/
148
- const FORCE_TLS_SETTING_NAME = ' magentomodule_force_tls_recv ' ;
148
+ const FORCE_TLS_SETTING_NAME = self :: FASTLY_MAGENTO_MODULE . ' _force_tls_recv ' ;
149
149
150
150
/**
151
151
* Configure Dictionary name
152
152
*/
153
- const CONFIG_DICTIONARY_NAME = ' magentomodule_config ' ;
153
+ const CONFIG_DICTIONARY_NAME = self :: FASTLY_MAGENTO_MODULE . ' _config ' ;
154
154
155
155
/**
156
156
* Maintenance Allowlist name
@@ -477,6 +477,9 @@ class Config extends \Magento\PageCache\Model\Config
477
477
const XML_FASTLY_CRAWLER_RATE_LIMITING_TTL
478
478
= 'system/full_page_cache/fastly/fastly_rate_limiting_settings/crawler_protection/crawler_rate_limiting_ttl ' ;
479
479
480
+ /**
481
+ * XML path to Exempt Good Bots flag
482
+ */
480
483
const XML_FASTLY_EXEMPT_GOOD_BOTS
481
484
= 'system/full_page_cache/fastly/fastly_rate_limiting_settings/crawler_protection/exempt_good_bots ' ;
482
485
0 commit comments