├── .github ├── tests │ └── phpunit_matcher.json └── workflows │ ├── code_quality.yml │ ├── delete-bot-branch.yaml │ ├── shielding-check-cron-manual.yaml │ └── shielding-check-cron.yaml ├── Block ├── Cache │ └── Additional.php ├── Dashboard │ ├── Grids.php │ └── Tab │ │ └── Stats │ │ └── Historic.php ├── GeoIp │ └── GetAction.php └── System │ └── Config │ └── Form │ ├── Dialogs.php │ ├── Field │ ├── Acl.php │ ├── AllModulesBtn.php │ ├── Auth.php │ ├── Backend.php │ ├── BlockingBtn.php │ ├── Checkbox.php │ ├── CountryMapping.php │ ├── CreateBackendBtn.php │ ├── CreateLogEndpointBtn.php │ ├── CustomSnippetBtn.php │ ├── CustomSnippets.php │ ├── Domains.php │ ├── Edge.php │ ├── EnableAuth.php │ ├── ErrorPageBtn.php │ ├── Export │ │ └── Fastly.php │ ├── ExportBtn.php │ ├── Http3Btn.php │ ├── ImageBtn.php │ ├── ImportBtn.php │ ├── IoConfigOptionsBtn.php │ ├── LogEndpoint.php │ ├── ManifestBtn.php │ ├── ModlyActiveModules.php │ ├── PathsBtn.php │ ├── SuBtn.php │ ├── TestConnectionBtn.php │ ├── TlsBtn.php │ ├── ToggleRateLimitingBtn.php │ ├── UpdateBlockingBtn.php │ ├── UpdateBypassBtn.php │ ├── UpdateSuBtn.php │ ├── UploadVclBtn.php │ ├── VersionHistory.php │ ├── WafBtn.php │ ├── WafBypassBtn.php │ └── WafPageBtn.php │ └── Modal │ └── UploadVcl.php ├── Console └── Command │ ├── ConfigGetCommand.php │ ├── ConfigImportCommand.php │ ├── EnableCommand.php │ ├── GenerateVclCommand.php │ ├── JsonToSerialize.php │ ├── SerializeToJson.php │ └── SuperUserCommand.php ├── Controller ├── Adminhtml │ ├── Dashboard │ │ └── Historic.php │ ├── FastlyCdn │ │ ├── Advanced │ │ │ ├── CheckHttp3Status.php │ │ │ ├── CheckTlsSetting.php │ │ │ ├── ForceTls.php │ │ │ └── ToggleHttp3.php │ │ ├── Apply.php │ │ ├── Backend │ │ │ ├── ConfigureBackend.php │ │ │ ├── CreateBackend.php │ │ │ ├── DeleteBackend.php │ │ │ ├── GetBackends.php │ │ │ └── ValidationTrait.php │ │ ├── BasicAuthentication │ │ │ ├── CheckAuthDictionary.php │ │ │ ├── CheckAuthSetting.php │ │ │ ├── CheckAuthUsersAvailable.php │ │ │ ├── Create.php │ │ │ ├── Delete.php │ │ │ ├── EnableAuth.php │ │ │ └── Item │ │ │ │ ├── Create.php │ │ │ │ ├── Delete.php │ │ │ │ └── ListAll.php │ │ ├── Blocking │ │ │ ├── AbstractBlocking.php │ │ │ ├── Blocking.php │ │ │ ├── CheckBlockingSetting.php │ │ │ └── UpdateBlocking.php │ │ ├── Configuration │ │ │ ├── CustomerInfo.php │ │ │ ├── GetFastlyServiceInfo.php │ │ │ ├── IsAlreadyConfigured.php │ │ │ ├── ServiceInfo.php │ │ │ └── TestConnection.php │ │ ├── CustomSnippet │ │ │ ├── ChangeUpdateFlag.php │ │ │ ├── CheckCustomSnippet.php │ │ │ ├── CreateCustomSnippet.php │ │ │ ├── DeleteCustomSnippet.php │ │ │ ├── EditCustomSnippet.php │ │ │ ├── GetCustomSnippet.php │ │ │ └── GetCustomSnippets.php │ │ ├── Domains │ │ │ ├── GetDomains.php │ │ │ └── PushDomains.php │ │ ├── Edge │ │ │ ├── Acl │ │ │ │ ├── Create.php │ │ │ │ ├── Delete.php │ │ │ │ ├── GetAcl.php │ │ │ │ ├── Item │ │ │ │ │ ├── Create.php │ │ │ │ │ ├── Delete.php │ │ │ │ │ ├── ListAll.php │ │ │ │ │ └── Update.php │ │ │ │ └── ListAll.php │ │ │ └── Dictionary │ │ │ │ ├── Create.php │ │ │ │ ├── Delete.php │ │ │ │ ├── Item │ │ │ │ ├── Create.php │ │ │ │ ├── Delete.php │ │ │ │ └── ListAll.php │ │ │ │ └── ListAll.php │ │ ├── ExportVarnishConfig.php │ │ ├── ImageOptimization │ │ │ ├── CheckFastlyIoSetting.php │ │ │ ├── CheckImageSetting.php │ │ │ ├── IoDefaultConfigOptions.php │ │ │ ├── ListAll.php │ │ │ └── PushImageSettings.php │ │ ├── ImportExport │ │ │ ├── DownloadExportData.php │ │ │ ├── GetExportData.php │ │ │ ├── GetImportData.php │ │ │ ├── SaveExportData.php │ │ │ └── SaveImportData.php │ │ ├── Logging │ │ │ ├── CreateEndpoint.php │ │ │ ├── GetAllEndpoints.php │ │ │ ├── GetEndpoint.php │ │ │ ├── GetEndpoints.php │ │ │ └── UpdateEndpoint.php │ │ ├── Maintenance │ │ │ ├── CheckSuSetting.php │ │ │ ├── ToggleSuSetting.php │ │ │ └── UpdateSuIps.php │ │ ├── Manifest │ │ │ ├── Create.php │ │ │ ├── GetActiveModules.php │ │ │ ├── GetAllConditions.php │ │ │ ├── GetAllDomains.php │ │ │ ├── GetAllModules.php │ │ │ ├── GetCountries.php │ │ │ ├── GetModuleData.php │ │ │ ├── GetResponseConditions.php │ │ │ ├── Save.php │ │ │ ├── ToggleModules.php │ │ │ └── Upload.php │ │ ├── Purge │ │ │ ├── All.php │ │ │ ├── ContentType.php │ │ │ ├── Quick.php │ │ │ └── Store.php │ │ ├── RateLimiting │ │ │ ├── CheckRateLimitingSetting.php │ │ │ ├── DisableRateLimiting.php │ │ │ ├── GetPaths.php │ │ │ ├── ToggleRateLimiting.php │ │ │ └── UpdatePaths.php │ │ ├── SyntheticPages │ │ │ ├── GetErrorPageRespObj.php │ │ │ ├── GetWafPageRespObj.php │ │ │ ├── RemoveErrorPageHtml.php │ │ │ ├── SaveErrorPageHtml.php │ │ │ └── SaveWafPage.php │ │ ├── Vcl │ │ │ ├── Comparison.php │ │ │ ├── DismissWarning.php │ │ │ ├── GetUpdateFlag.php │ │ │ ├── IsWarningDismissed.php │ │ │ └── Upload.php │ │ ├── VersionHistory │ │ │ ├── Activate.php │ │ │ ├── ListVersions.php │ │ │ └── Reference.php │ │ └── Waf │ │ │ ├── AbstractWafUpdate.php │ │ │ ├── CheckWafBypassSetting.php │ │ │ ├── GetWafSettings.php │ │ │ ├── UpdateWafAllowlist.php │ │ │ └── WafAllowlist.php │ └── System │ │ └── Message │ │ └── Dismiss.php └── GeoIP │ └── GetAction.php ├── Documentation ├── CLI.md ├── CONFIGURATION.md ├── CONTRIBUTING.md ├── Guides │ ├── ACL.md │ ├── BACKEND-SETTINGS.md │ ├── BASIC-AUTH.md │ ├── BLOCKING.md │ ├── CUSTOM-VCL-SNIPPETS.md │ ├── DICTIONARIES.md │ ├── ERROR-MAINTENANCE-PAGE.md │ ├── ESI.md │ ├── Edge-Modules │ │ ├── EDGE-MODULE-BLACKFIRE-INTEGRATION.md │ │ ├── EDGE-MODULE-CORS-HEADERS.md │ │ ├── EDGE-MODULE-DATADOME-INTEGRATION.md │ │ ├── EDGE-MODULE-HARD-RELOAD-CACHE-BYPASS.md │ │ ├── EDGE-MODULE-IMAGE-OPTIMIZATION-TEST-DRIVE.md │ │ ├── EDGE-MODULE-INCREASE-TIMEOUTS-LONG-JOBS.md │ │ ├── EDGE-MODULE-MOBILE-THEME-SUPPORT.md │ │ ├── EDGE-MODULE-NETACEA-INTEGRATION.md │ │ ├── EDGE-MODULE-OTHER-CMS-INTEGRATION.md │ │ ├── EDGE-MODULE-PERIMETERX-INTEGRATION.md │ │ ├── EDGE-MODULE-REDIRECT-DOMAIN.md │ │ ├── EDGE-MODULE-SITESPECT-INTEGRATION.md │ │ ├── EDGE-MODULE-URL-REWRITES.md │ │ └── EDGE-MODULES.md │ ├── FORCE-TLS.md │ ├── IMAGE-OPTIMIZATION.md │ ├── INSTALLATION.md │ ├── MAINTENANCE-MODE.md │ ├── RATE-LIMITING.md │ └── WEBHOOK-NOTIFICATIONS.md ├── INSTALLATION.md ├── OPENING-ISSUES.md ├── OTHER-FUNCTIONS.md ├── README.md ├── TLS.md ├── TROUBLESHOOTING.md └── images │ ├── .DS_Store │ ├── fastly_config.jpg │ └── guides │ ├── acl │ ├── acl-container.png │ ├── acl-item.png │ └── acl.png │ ├── backend-settings │ ├── edit-backend.png │ └── shielding-configuration.png │ ├── basic-auth │ ├── adding-users.png │ ├── confirmation-screen.png │ ├── create-container-for-authenticated-users.png │ └── main-screen.png │ ├── blocking │ └── blocking_ui.png │ ├── dictionaries │ ├── dictionaries.png │ ├── dictionary-container.png │ └── dictionary-item.png │ ├── edge-modules │ ├── edge-module-blackfire.png │ ├── edge-module-cors.png │ ├── edge-module-create-backend-1.png │ ├── edge-module-create-backend-2.png │ ├── edge-module-create-request-condition.png │ ├── edge-module-datadome.jpg │ ├── edge-module-hard-reload-cache-bypass.png │ ├── edge-module-image-optimization-test-drive-overlaid-image.jpg │ ├── edge-module-image-optimization-test-drive-synthetic-page.png │ ├── edge-module-increase-timeouts-long-jobs.png │ ├── edge-module-netacea.jpg │ ├── edge-module-redirect-one-domain-to-another.png │ ├── edge-module-sitespect.jpg │ ├── edge-module-test-drive-image-optimization.png │ ├── edge-module-url-rewrites.jpg │ ├── edgemodule-othercms-integration.png │ ├── fastly-edge-modules-list-of-modules.png │ ├── fastly-edgemodules-first-use.png │ └── fastly-edgemodules-onemodule.png │ ├── error-maintenance-page │ ├── default-error-page.png │ ├── error-maintenance-page.png │ ├── new-error-page.png │ └── set-html.png │ ├── force-tls │ ├── force-tls-modal.png │ ├── force-tls-success.png │ ├── force-tls.png │ └── secure-url.png │ ├── geoip │ ├── geoip-prompt.png │ └── geoip-settings.png │ ├── image-optimization │ ├── io_default_config_dialog.png │ ├── io_main_screen.png │ ├── io_not_enabled.png │ └── io_tunables.png │ ├── installation │ ├── account-api-key.png │ ├── choosefastly.png │ ├── clearcache.png │ ├── golive.png │ ├── newfeatures.png │ ├── show-service-id.png │ ├── successvcl.png │ ├── testcredentials.png │ ├── vclupload.png │ └── wizard.png │ ├── maintenance-mode │ └── maint-mode.png │ ├── rate-limiting │ ├── rate-limiting1.png │ └── rate-limiting2.png │ ├── vcl-snippets │ ├── after_snippet_create.png │ ├── snippet_create.png │ └── vcl_snippets_main.png │ └── webhooks │ ├── example_notifications.png │ └── webhooks_ui.png ├── Helper ├── Acl.php ├── AutomaticCompression.php ├── CacheTags.php ├── Data.php ├── Manifest.php ├── StoreMessage.php └── Vcl.php ├── LICENSE_FASTLY_CDN.txt ├── Model ├── AdaptivePixelRatio.php ├── Api.php ├── Config.php ├── Config │ ├── Backend │ │ ├── AutomaticCompression.php │ │ ├── BlocklistAllowlist.php │ │ ├── CustomSnippetUpload.php │ │ ├── Geoipcountry.php │ │ ├── ImportFile.php │ │ ├── ListAcl.php │ │ ├── PixelRatios.php │ │ └── ValidateInt.php │ ├── ConfigRewrite.php │ └── GeolocationRedirectMatcher.php ├── FrontControllerPlugin.php ├── Importer.php ├── Layout │ └── LayoutPlugin.php ├── Manifest.php ├── Modly │ ├── Manifest.php │ └── Node.php ├── Notification.php ├── PageCache │ ├── ConfigPlugin.php │ └── PurgeCachePlugin.php ├── Product │ └── Image.php ├── PurgeCache.php ├── Resolver │ └── GeoIP │ │ ├── CountryCodeProviderInterface.php │ │ └── HttpCountryProvider.php ├── ResourceModel │ ├── Manifest.php │ ├── Manifest │ │ └── Collection.php │ ├── Statistic.php │ └── Statistic │ │ └── Collection.php ├── ResponsePlugin.php ├── Statistic.php ├── StatisticRepository.php ├── System │ ├── Config │ │ ├── Shielding │ │ │ └── DataCenters.php │ │ └── Source │ │ │ ├── ApplicationPlugin.php │ │ │ └── GeoIP │ │ │ └── Action.php │ └── Message │ │ └── BetterImageOptimization.php ├── Upload │ ├── Acl.php │ └── Dictionary.php └── View │ └── Asset │ └── Image.php ├── Observer ├── CheckVersion.php ├── ConfigurationSave.php ├── FlushAllCacheObserver.php ├── InvalidateVarnishObserver.php ├── MarkEsiBlock.php ├── MarkEsiPage.php └── SendInstalledRequestToGA.php ├── Plugin ├── AdaptivePixelRatioPlugin.php ├── Block │ └── Product │ │ └── View │ │ └── Type │ │ └── ConfigurablePlugin.php ├── Catalog │ └── Observer │ │ └── DisableImageResizeAfterProductSave.php ├── Config │ └── StructurePlugin.php ├── ExcludeFilesFromMinification.php ├── GalleryPlugin.php ├── GraphQl │ └── AfterRenderResult.php ├── MediaStorage │ └── App │ │ └── AroundMedia.php └── Swatches │ └── Helper │ └── Data │ └── AppendSrcsetInformationPlugin.php ├── README.md ├── Release-Notes.md ├── Setup └── Patch │ └── Data │ ├── ChangeConstValueInDb.php │ ├── Config.php │ ├── InstalledFlag.php │ └── RateLimitPath.php ├── Test └── Unit │ ├── Controller │ └── Adminhtml │ │ └── FastlyCdn │ │ └── ExportVarnishConfigTest.php │ └── Model │ ├── Config │ └── GeolocationRedirectMatcherTest.php │ ├── ConfigTest.php │ ├── Layout │ └── LayoutPluginTest.php │ ├── PageCache │ └── ConfigPluginTest.php │ └── _files │ ├── result.vcl │ └── test.vcl ├── VERSION ├── composer.json ├── etc ├── adminhtml │ ├── di.xml │ ├── events.xml │ ├── routes.xml │ └── system.xml ├── config.xml ├── db_schema.xml ├── db_schema_whitelist.json ├── di.xml ├── events.xml ├── fastly_edge_modules │ ├── blackfire_integration.json │ ├── cors_headers.json │ ├── datadome_integration.json │ ├── disabled │ │ ├── aclblacklist.json │ │ ├── countryblock.json │ │ ├── error.json │ │ ├── esi.json │ │ ├── forcetls.json │ │ ├── gzip.json │ │ ├── hostoverride.json │ │ ├── nocache.json │ │ ├── normalise.json │ │ ├── redirects.json │ │ ├── stale.json │ │ └── ttloverride.json │ ├── force_cache_miss_on_hard_reload_for_admins.json │ ├── increase_timeouts_long_jobs.json │ ├── io_test_drive.json │ ├── magento_cloud_sitemap_rewrite.json │ ├── mobile_device_detection.json │ ├── netacea_integration.json │ ├── other_cms_integration.json │ ├── perimeterx_bot_defender.json │ ├── redirect_hosts.json │ └── sitespect_integration.json ├── frontend │ ├── di.xml │ ├── events.xml │ └── routes.xml ├── graphql │ └── di.xml ├── module.xml ├── setup │ └── di.xml ├── shielding │ ├── README.md │ └── datacenters.json ├── vcl_snippets │ ├── deliver.vcl │ ├── error.vcl │ ├── fetch.vcl │ ├── hash.vcl │ ├── miss.vcl │ ├── pass.vcl │ └── recv.vcl ├── vcl_snippets_basic_auth │ ├── error.vcl │ └── recv.vcl ├── vcl_snippets_blocking │ └── recv.vcl ├── vcl_snippets_error_page │ └── deliver.vcl ├── vcl_snippets_force_tls │ ├── deliver.vcl │ └── recv.vcl ├── vcl_snippets_http_3 │ └── recv.vcl ├── vcl_snippets_image_optimizations │ └── recv.vcl ├── vcl_snippets_rate_limiting │ ├── deliver.vcl │ ├── fetch.vcl │ ├── hash.vcl │ ├── miss.vcl │ └── recv.vcl ├── vcl_snippets_waf │ └── recv.vcl └── webapi_rest │ └── di.xml ├── i18n ├── de_DE.csv └── en_US.csv ├── registration.php ├── update_version.sh └── view ├── adminhtml ├── layout │ ├── adminhtml_cache_index.xml │ ├── adminhtml_system_config_edit.xml │ └── default.xml ├── requirejs-config.js ├── templates │ ├── dashboard │ │ └── stats │ │ │ └── historic.phtml │ └── system │ │ ├── cache │ │ └── additional.phtml │ │ └── config │ │ ├── dialogs.phtml │ │ └── form │ │ ├── field │ │ ├── acl.phtml │ │ ├── allModulesBtn.phtml │ │ ├── array.phtml │ │ ├── auth.phtml │ │ ├── backend.phtml │ │ ├── blockingBtn.phtml │ │ ├── checkbox.phtml │ │ ├── createBackendBtn.phtml │ │ ├── createLogEndpointBtn.phtml │ │ ├── customSnippetBtn.phtml │ │ ├── customSnippets.phtml │ │ ├── domains.phtml │ │ ├── edge.phtml │ │ ├── enableAuth.phtml │ │ ├── errorPageBtn.phtml │ │ ├── exportBtn.phtml │ │ ├── http3_btn.phtml │ │ ├── imageBtn.phtml │ │ ├── importBtn.phtml │ │ ├── ioConfigOptionsBtn.phtml │ │ ├── logEndpoint.phtml │ │ ├── manifestBtn.phtml │ │ ├── modlyActiveModules.phtml │ │ ├── pathsBtn.phtml │ │ ├── suBtn.phtml │ │ ├── testConnectionBtn.phtml │ │ ├── tlsBtn.phtml │ │ ├── toggleRateLimitingBtn.phtml │ │ ├── updateBlockingBtn.phtml │ │ ├── updateBypassBtn.phtml │ │ ├── updateSuBtn.phtml │ │ ├── uploadVclBtn.phtml │ │ ├── versionHistory.phtml │ │ ├── wafBtn.phtml │ │ ├── wafBypassBtn.phtml │ │ └── wafPageBtn.phtml │ │ └── log │ │ └── azure.phtml └── web │ ├── css │ └── fastly.css │ ├── images │ ├── cloud.svg │ ├── fastly.gif │ ├── fastly16.gif │ ├── fastly32.gif │ ├── fastly48.gif │ └── view.svg │ └── js │ ├── backends.js │ ├── basic-authentication.js │ ├── blocking.js │ ├── custom-snippets.js │ ├── custom-synthetic-pages.js │ ├── domains.js │ ├── edge-acl.js │ ├── edge-dictionaries.js │ ├── error-message.js │ ├── export.js │ ├── handlebars-v4.7.7.js │ ├── historicstats.js │ ├── http3.js │ ├── image-optimization.js │ ├── import-export-renderer.js │ ├── import.js │ ├── init.js │ ├── log-endpoints.js │ ├── maintenance.js │ ├── modly.js │ ├── overlay.js │ ├── rate-limiting.js │ ├── reset-all-messages.js │ ├── service-label.js │ ├── success-message.js │ ├── system │ ├── cache │ │ └── additional.js │ └── config │ │ └── form │ │ └── field │ │ └── array.js │ ├── testconnection.js │ ├── tls.js │ ├── upload-vcl.js │ ├── version-history.js │ ├── waf.js │ ├── wafBypass.js │ └── warning-message.js └── frontend ├── layout ├── default.xml ├── geoip_getaction_dialog.xml └── geoip_getaction_redirect.xml ├── requirejs-config.js ├── templates └── geoip │ ├── dialog.phtml │ └── redirect.phtml └── web └── js ├── dialog.js ├── gallery └── gallery-mixin.js └── swatch-renderer-mixin.js /.github/tests/phpunit_matcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/.github/tests/phpunit_matcher.json -------------------------------------------------------------------------------- /.github/workflows/code_quality.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/.github/workflows/code_quality.yml -------------------------------------------------------------------------------- /.github/workflows/delete-bot-branch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/.github/workflows/delete-bot-branch.yaml -------------------------------------------------------------------------------- /.github/workflows/shielding-check-cron-manual.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/.github/workflows/shielding-check-cron-manual.yaml -------------------------------------------------------------------------------- /.github/workflows/shielding-check-cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/.github/workflows/shielding-check-cron.yaml -------------------------------------------------------------------------------- /Block/Cache/Additional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/Cache/Additional.php -------------------------------------------------------------------------------- /Block/Dashboard/Grids.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/Dashboard/Grids.php -------------------------------------------------------------------------------- /Block/Dashboard/Tab/Stats/Historic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/Dashboard/Tab/Stats/Historic.php -------------------------------------------------------------------------------- /Block/GeoIp/GetAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/GeoIp/GetAction.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Dialogs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Dialogs.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/Acl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/Acl.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/AllModulesBtn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/AllModulesBtn.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/Auth.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/Backend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/Backend.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/BlockingBtn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/BlockingBtn.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/Checkbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/Checkbox.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/CountryMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/CountryMapping.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/CreateBackendBtn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/CreateBackendBtn.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/CreateLogEndpointBtn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/CreateLogEndpointBtn.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/CustomSnippetBtn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/CustomSnippetBtn.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/CustomSnippets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/CustomSnippets.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/Domains.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/Domains.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/Edge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/Edge.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/EnableAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/EnableAuth.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/ErrorPageBtn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/ErrorPageBtn.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/Export/Fastly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/Export/Fastly.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/ExportBtn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/ExportBtn.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/Http3Btn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/Http3Btn.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/ImageBtn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/ImageBtn.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/ImportBtn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/ImportBtn.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/IoConfigOptionsBtn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/IoConfigOptionsBtn.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/LogEndpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/LogEndpoint.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/ManifestBtn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/ManifestBtn.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/ModlyActiveModules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/ModlyActiveModules.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/PathsBtn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/PathsBtn.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/SuBtn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/SuBtn.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/TestConnectionBtn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/TestConnectionBtn.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/TlsBtn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/TlsBtn.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/ToggleRateLimitingBtn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/ToggleRateLimitingBtn.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/UpdateBlockingBtn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/UpdateBlockingBtn.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/UpdateBypassBtn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/UpdateBypassBtn.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/UpdateSuBtn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/UpdateSuBtn.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/UploadVclBtn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/UploadVclBtn.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/VersionHistory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/VersionHistory.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/WafBtn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/WafBtn.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/WafBypassBtn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/WafBypassBtn.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Field/WafPageBtn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Field/WafPageBtn.php -------------------------------------------------------------------------------- /Block/System/Config/Form/Modal/UploadVcl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Block/System/Config/Form/Modal/UploadVcl.php -------------------------------------------------------------------------------- /Console/Command/ConfigGetCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Console/Command/ConfigGetCommand.php -------------------------------------------------------------------------------- /Console/Command/ConfigImportCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Console/Command/ConfigImportCommand.php -------------------------------------------------------------------------------- /Console/Command/EnableCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Console/Command/EnableCommand.php -------------------------------------------------------------------------------- /Console/Command/GenerateVclCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Console/Command/GenerateVclCommand.php -------------------------------------------------------------------------------- /Console/Command/JsonToSerialize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Console/Command/JsonToSerialize.php -------------------------------------------------------------------------------- /Console/Command/SerializeToJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Console/Command/SerializeToJson.php -------------------------------------------------------------------------------- /Console/Command/SuperUserCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Console/Command/SuperUserCommand.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Dashboard/Historic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/Dashboard/Historic.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Advanced/CheckHttp3Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Advanced/CheckHttp3Status.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Advanced/CheckTlsSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Advanced/CheckTlsSetting.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Advanced/ForceTls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Advanced/ForceTls.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Advanced/ToggleHttp3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Advanced/ToggleHttp3.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Apply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Apply.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Backend/ConfigureBackend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Backend/ConfigureBackend.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Backend/CreateBackend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Backend/CreateBackend.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Backend/DeleteBackend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Backend/DeleteBackend.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Backend/GetBackends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Backend/GetBackends.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Backend/ValidationTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Backend/ValidationTrait.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/BasicAuthentication/CheckAuthDictionary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/BasicAuthentication/CheckAuthDictionary.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/BasicAuthentication/CheckAuthSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/BasicAuthentication/CheckAuthSetting.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/BasicAuthentication/CheckAuthUsersAvailable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/BasicAuthentication/CheckAuthUsersAvailable.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/BasicAuthentication/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/BasicAuthentication/Create.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/BasicAuthentication/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/BasicAuthentication/Delete.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/BasicAuthentication/EnableAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/BasicAuthentication/EnableAuth.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/BasicAuthentication/Item/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/BasicAuthentication/Item/Create.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/BasicAuthentication/Item/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/BasicAuthentication/Item/Delete.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/BasicAuthentication/Item/ListAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/BasicAuthentication/Item/ListAll.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Blocking/AbstractBlocking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Blocking/AbstractBlocking.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Blocking/Blocking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Blocking/Blocking.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Blocking/CheckBlockingSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Blocking/CheckBlockingSetting.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Blocking/UpdateBlocking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Blocking/UpdateBlocking.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Configuration/CustomerInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Configuration/CustomerInfo.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Configuration/GetFastlyServiceInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Configuration/GetFastlyServiceInfo.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Configuration/IsAlreadyConfigured.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Configuration/IsAlreadyConfigured.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Configuration/ServiceInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Configuration/ServiceInfo.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Configuration/TestConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Configuration/TestConnection.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/CustomSnippet/ChangeUpdateFlag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/CustomSnippet/ChangeUpdateFlag.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/CustomSnippet/CheckCustomSnippet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/CustomSnippet/CheckCustomSnippet.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/CustomSnippet/CreateCustomSnippet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/CustomSnippet/CreateCustomSnippet.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/CustomSnippet/DeleteCustomSnippet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/CustomSnippet/DeleteCustomSnippet.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/CustomSnippet/EditCustomSnippet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/CustomSnippet/EditCustomSnippet.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/CustomSnippet/GetCustomSnippet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/CustomSnippet/GetCustomSnippet.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/CustomSnippet/GetCustomSnippets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/CustomSnippet/GetCustomSnippets.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Domains/GetDomains.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Domains/GetDomains.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Domains/PushDomains.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Domains/PushDomains.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Edge/Acl/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Edge/Acl/Create.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Edge/Acl/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Edge/Acl/Delete.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Edge/Acl/GetAcl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Edge/Acl/GetAcl.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Edge/Acl/Item/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Edge/Acl/Item/Create.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Edge/Acl/Item/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Edge/Acl/Item/Delete.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Edge/Acl/Item/ListAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Edge/Acl/Item/ListAll.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Edge/Acl/Item/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Edge/Acl/Item/Update.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Edge/Acl/ListAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Edge/Acl/ListAll.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Edge/Dictionary/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Edge/Dictionary/Create.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Edge/Dictionary/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Edge/Dictionary/Delete.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Edge/Dictionary/Item/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Edge/Dictionary/Item/Create.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Edge/Dictionary/Item/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Edge/Dictionary/Item/Delete.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Edge/Dictionary/Item/ListAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Edge/Dictionary/Item/ListAll.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Edge/Dictionary/ListAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Edge/Dictionary/ListAll.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/ExportVarnishConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/ExportVarnishConfig.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/ImageOptimization/CheckFastlyIoSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/ImageOptimization/CheckFastlyIoSetting.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/ImageOptimization/CheckImageSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/ImageOptimization/CheckImageSetting.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/ImageOptimization/IoDefaultConfigOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/ImageOptimization/IoDefaultConfigOptions.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/ImageOptimization/ListAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/ImageOptimization/ListAll.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/ImageOptimization/PushImageSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/ImageOptimization/PushImageSettings.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/ImportExport/DownloadExportData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/ImportExport/DownloadExportData.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/ImportExport/GetExportData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/ImportExport/GetExportData.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/ImportExport/GetImportData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/ImportExport/GetImportData.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/ImportExport/SaveExportData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/ImportExport/SaveExportData.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/ImportExport/SaveImportData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/ImportExport/SaveImportData.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Logging/CreateEndpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Logging/CreateEndpoint.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Logging/GetAllEndpoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Logging/GetAllEndpoints.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Logging/GetEndpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Logging/GetEndpoint.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Logging/GetEndpoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Logging/GetEndpoints.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Logging/UpdateEndpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Logging/UpdateEndpoint.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Maintenance/CheckSuSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Maintenance/CheckSuSetting.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Maintenance/ToggleSuSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Maintenance/ToggleSuSetting.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Maintenance/UpdateSuIps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Maintenance/UpdateSuIps.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Manifest/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Manifest/Create.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Manifest/GetActiveModules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Manifest/GetActiveModules.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Manifest/GetAllConditions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Manifest/GetAllConditions.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Manifest/GetAllDomains.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Manifest/GetAllDomains.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Manifest/GetAllModules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Manifest/GetAllModules.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Manifest/GetCountries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Manifest/GetCountries.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Manifest/GetModuleData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Manifest/GetModuleData.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Manifest/GetResponseConditions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Manifest/GetResponseConditions.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Manifest/Save.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Manifest/Save.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Manifest/ToggleModules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Manifest/ToggleModules.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Manifest/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Manifest/Upload.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Purge/All.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Purge/All.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Purge/ContentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Purge/ContentType.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Purge/Quick.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Purge/Quick.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Purge/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Purge/Store.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/RateLimiting/CheckRateLimitingSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/RateLimiting/CheckRateLimitingSetting.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/RateLimiting/DisableRateLimiting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/RateLimiting/DisableRateLimiting.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/RateLimiting/GetPaths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/RateLimiting/GetPaths.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/RateLimiting/ToggleRateLimiting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/RateLimiting/ToggleRateLimiting.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/RateLimiting/UpdatePaths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/RateLimiting/UpdatePaths.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/SyntheticPages/GetErrorPageRespObj.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/SyntheticPages/GetErrorPageRespObj.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/SyntheticPages/GetWafPageRespObj.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/SyntheticPages/GetWafPageRespObj.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/SyntheticPages/RemoveErrorPageHtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/SyntheticPages/RemoveErrorPageHtml.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/SyntheticPages/SaveErrorPageHtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/SyntheticPages/SaveErrorPageHtml.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/SyntheticPages/SaveWafPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/SyntheticPages/SaveWafPage.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Vcl/Comparison.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Vcl/Comparison.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Vcl/DismissWarning.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Vcl/DismissWarning.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Vcl/GetUpdateFlag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Vcl/GetUpdateFlag.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Vcl/IsWarningDismissed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Vcl/IsWarningDismissed.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Vcl/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Vcl/Upload.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/VersionHistory/Activate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/VersionHistory/Activate.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/VersionHistory/ListVersions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/VersionHistory/ListVersions.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/VersionHistory/Reference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/VersionHistory/Reference.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Waf/AbstractWafUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Waf/AbstractWafUpdate.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Waf/CheckWafBypassSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Waf/CheckWafBypassSetting.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Waf/GetWafSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Waf/GetWafSettings.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Waf/UpdateWafAllowlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Waf/UpdateWafAllowlist.php -------------------------------------------------------------------------------- /Controller/Adminhtml/FastlyCdn/Waf/WafAllowlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/FastlyCdn/Waf/WafAllowlist.php -------------------------------------------------------------------------------- /Controller/Adminhtml/System/Message/Dismiss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/Adminhtml/System/Message/Dismiss.php -------------------------------------------------------------------------------- /Controller/GeoIP/GetAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Controller/GeoIP/GetAction.php -------------------------------------------------------------------------------- /Documentation/CLI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/CLI.md -------------------------------------------------------------------------------- /Documentation/CONFIGURATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/CONFIGURATION.md -------------------------------------------------------------------------------- /Documentation/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/CONTRIBUTING.md -------------------------------------------------------------------------------- /Documentation/Guides/ACL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/Guides/ACL.md -------------------------------------------------------------------------------- /Documentation/Guides/BACKEND-SETTINGS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/Guides/BACKEND-SETTINGS.md -------------------------------------------------------------------------------- /Documentation/Guides/BASIC-AUTH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/Guides/BASIC-AUTH.md -------------------------------------------------------------------------------- /Documentation/Guides/BLOCKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/Guides/BLOCKING.md -------------------------------------------------------------------------------- /Documentation/Guides/CUSTOM-VCL-SNIPPETS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/Guides/CUSTOM-VCL-SNIPPETS.md -------------------------------------------------------------------------------- /Documentation/Guides/DICTIONARIES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/Guides/DICTIONARIES.md -------------------------------------------------------------------------------- /Documentation/Guides/ERROR-MAINTENANCE-PAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/Guides/ERROR-MAINTENANCE-PAGE.md -------------------------------------------------------------------------------- /Documentation/Guides/ESI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/Guides/ESI.md -------------------------------------------------------------------------------- /Documentation/Guides/Edge-Modules/EDGE-MODULE-BLACKFIRE-INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/Guides/Edge-Modules/EDGE-MODULE-BLACKFIRE-INTEGRATION.md -------------------------------------------------------------------------------- /Documentation/Guides/Edge-Modules/EDGE-MODULE-CORS-HEADERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/Guides/Edge-Modules/EDGE-MODULE-CORS-HEADERS.md -------------------------------------------------------------------------------- /Documentation/Guides/Edge-Modules/EDGE-MODULE-DATADOME-INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/Guides/Edge-Modules/EDGE-MODULE-DATADOME-INTEGRATION.md -------------------------------------------------------------------------------- /Documentation/Guides/Edge-Modules/EDGE-MODULE-HARD-RELOAD-CACHE-BYPASS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/Guides/Edge-Modules/EDGE-MODULE-HARD-RELOAD-CACHE-BYPASS.md -------------------------------------------------------------------------------- /Documentation/Guides/Edge-Modules/EDGE-MODULE-IMAGE-OPTIMIZATION-TEST-DRIVE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/Guides/Edge-Modules/EDGE-MODULE-IMAGE-OPTIMIZATION-TEST-DRIVE.md -------------------------------------------------------------------------------- /Documentation/Guides/Edge-Modules/EDGE-MODULE-INCREASE-TIMEOUTS-LONG-JOBS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/Guides/Edge-Modules/EDGE-MODULE-INCREASE-TIMEOUTS-LONG-JOBS.md -------------------------------------------------------------------------------- /Documentation/Guides/Edge-Modules/EDGE-MODULE-MOBILE-THEME-SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/Guides/Edge-Modules/EDGE-MODULE-MOBILE-THEME-SUPPORT.md -------------------------------------------------------------------------------- /Documentation/Guides/Edge-Modules/EDGE-MODULE-NETACEA-INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/Guides/Edge-Modules/EDGE-MODULE-NETACEA-INTEGRATION.md -------------------------------------------------------------------------------- /Documentation/Guides/Edge-Modules/EDGE-MODULE-OTHER-CMS-INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/Guides/Edge-Modules/EDGE-MODULE-OTHER-CMS-INTEGRATION.md -------------------------------------------------------------------------------- /Documentation/Guides/Edge-Modules/EDGE-MODULE-PERIMETERX-INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/Guides/Edge-Modules/EDGE-MODULE-PERIMETERX-INTEGRATION.md -------------------------------------------------------------------------------- /Documentation/Guides/Edge-Modules/EDGE-MODULE-REDIRECT-DOMAIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/Guides/Edge-Modules/EDGE-MODULE-REDIRECT-DOMAIN.md -------------------------------------------------------------------------------- /Documentation/Guides/Edge-Modules/EDGE-MODULE-SITESPECT-INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/Guides/Edge-Modules/EDGE-MODULE-SITESPECT-INTEGRATION.md -------------------------------------------------------------------------------- /Documentation/Guides/Edge-Modules/EDGE-MODULE-URL-REWRITES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/Guides/Edge-Modules/EDGE-MODULE-URL-REWRITES.md -------------------------------------------------------------------------------- /Documentation/Guides/Edge-Modules/EDGE-MODULES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/Guides/Edge-Modules/EDGE-MODULES.md -------------------------------------------------------------------------------- /Documentation/Guides/FORCE-TLS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/Guides/FORCE-TLS.md -------------------------------------------------------------------------------- /Documentation/Guides/IMAGE-OPTIMIZATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/Guides/IMAGE-OPTIMIZATION.md -------------------------------------------------------------------------------- /Documentation/Guides/INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/Guides/INSTALLATION.md -------------------------------------------------------------------------------- /Documentation/Guides/MAINTENANCE-MODE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/Guides/MAINTENANCE-MODE.md -------------------------------------------------------------------------------- /Documentation/Guides/RATE-LIMITING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/Guides/RATE-LIMITING.md -------------------------------------------------------------------------------- /Documentation/Guides/WEBHOOK-NOTIFICATIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/Guides/WEBHOOK-NOTIFICATIONS.md -------------------------------------------------------------------------------- /Documentation/INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/INSTALLATION.md -------------------------------------------------------------------------------- /Documentation/OPENING-ISSUES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/OPENING-ISSUES.md -------------------------------------------------------------------------------- /Documentation/OTHER-FUNCTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/OTHER-FUNCTIONS.md -------------------------------------------------------------------------------- /Documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/README.md -------------------------------------------------------------------------------- /Documentation/TLS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/TLS.md -------------------------------------------------------------------------------- /Documentation/TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /Documentation/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/.DS_Store -------------------------------------------------------------------------------- /Documentation/images/fastly_config.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/fastly_config.jpg -------------------------------------------------------------------------------- /Documentation/images/guides/acl/acl-container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/acl/acl-container.png -------------------------------------------------------------------------------- /Documentation/images/guides/acl/acl-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/acl/acl-item.png -------------------------------------------------------------------------------- /Documentation/images/guides/acl/acl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/acl/acl.png -------------------------------------------------------------------------------- /Documentation/images/guides/backend-settings/edit-backend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/backend-settings/edit-backend.png -------------------------------------------------------------------------------- /Documentation/images/guides/backend-settings/shielding-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/backend-settings/shielding-configuration.png -------------------------------------------------------------------------------- /Documentation/images/guides/basic-auth/adding-users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/basic-auth/adding-users.png -------------------------------------------------------------------------------- /Documentation/images/guides/basic-auth/confirmation-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/basic-auth/confirmation-screen.png -------------------------------------------------------------------------------- /Documentation/images/guides/basic-auth/create-container-for-authenticated-users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/basic-auth/create-container-for-authenticated-users.png -------------------------------------------------------------------------------- /Documentation/images/guides/basic-auth/main-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/basic-auth/main-screen.png -------------------------------------------------------------------------------- /Documentation/images/guides/blocking/blocking_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/blocking/blocking_ui.png -------------------------------------------------------------------------------- /Documentation/images/guides/dictionaries/dictionaries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/dictionaries/dictionaries.png -------------------------------------------------------------------------------- /Documentation/images/guides/dictionaries/dictionary-container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/dictionaries/dictionary-container.png -------------------------------------------------------------------------------- /Documentation/images/guides/dictionaries/dictionary-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/dictionaries/dictionary-item.png -------------------------------------------------------------------------------- /Documentation/images/guides/edge-modules/edge-module-blackfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/edge-modules/edge-module-blackfire.png -------------------------------------------------------------------------------- /Documentation/images/guides/edge-modules/edge-module-cors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/edge-modules/edge-module-cors.png -------------------------------------------------------------------------------- /Documentation/images/guides/edge-modules/edge-module-create-backend-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/edge-modules/edge-module-create-backend-1.png -------------------------------------------------------------------------------- /Documentation/images/guides/edge-modules/edge-module-create-backend-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/edge-modules/edge-module-create-backend-2.png -------------------------------------------------------------------------------- /Documentation/images/guides/edge-modules/edge-module-create-request-condition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/edge-modules/edge-module-create-request-condition.png -------------------------------------------------------------------------------- /Documentation/images/guides/edge-modules/edge-module-datadome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/edge-modules/edge-module-datadome.jpg -------------------------------------------------------------------------------- /Documentation/images/guides/edge-modules/edge-module-hard-reload-cache-bypass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/edge-modules/edge-module-hard-reload-cache-bypass.png -------------------------------------------------------------------------------- /Documentation/images/guides/edge-modules/edge-module-image-optimization-test-drive-overlaid-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/edge-modules/edge-module-image-optimization-test-drive-overlaid-image.jpg -------------------------------------------------------------------------------- /Documentation/images/guides/edge-modules/edge-module-image-optimization-test-drive-synthetic-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/edge-modules/edge-module-image-optimization-test-drive-synthetic-page.png -------------------------------------------------------------------------------- /Documentation/images/guides/edge-modules/edge-module-increase-timeouts-long-jobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/edge-modules/edge-module-increase-timeouts-long-jobs.png -------------------------------------------------------------------------------- /Documentation/images/guides/edge-modules/edge-module-netacea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/edge-modules/edge-module-netacea.jpg -------------------------------------------------------------------------------- /Documentation/images/guides/edge-modules/edge-module-redirect-one-domain-to-another.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/edge-modules/edge-module-redirect-one-domain-to-another.png -------------------------------------------------------------------------------- /Documentation/images/guides/edge-modules/edge-module-sitespect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/edge-modules/edge-module-sitespect.jpg -------------------------------------------------------------------------------- /Documentation/images/guides/edge-modules/edge-module-test-drive-image-optimization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/edge-modules/edge-module-test-drive-image-optimization.png -------------------------------------------------------------------------------- /Documentation/images/guides/edge-modules/edge-module-url-rewrites.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/edge-modules/edge-module-url-rewrites.jpg -------------------------------------------------------------------------------- /Documentation/images/guides/edge-modules/edgemodule-othercms-integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/edge-modules/edgemodule-othercms-integration.png -------------------------------------------------------------------------------- /Documentation/images/guides/edge-modules/fastly-edge-modules-list-of-modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/edge-modules/fastly-edge-modules-list-of-modules.png -------------------------------------------------------------------------------- /Documentation/images/guides/edge-modules/fastly-edgemodules-first-use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/edge-modules/fastly-edgemodules-first-use.png -------------------------------------------------------------------------------- /Documentation/images/guides/edge-modules/fastly-edgemodules-onemodule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/edge-modules/fastly-edgemodules-onemodule.png -------------------------------------------------------------------------------- /Documentation/images/guides/error-maintenance-page/default-error-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/error-maintenance-page/default-error-page.png -------------------------------------------------------------------------------- /Documentation/images/guides/error-maintenance-page/error-maintenance-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/error-maintenance-page/error-maintenance-page.png -------------------------------------------------------------------------------- /Documentation/images/guides/error-maintenance-page/new-error-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/error-maintenance-page/new-error-page.png -------------------------------------------------------------------------------- /Documentation/images/guides/error-maintenance-page/set-html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/error-maintenance-page/set-html.png -------------------------------------------------------------------------------- /Documentation/images/guides/force-tls/force-tls-modal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/force-tls/force-tls-modal.png -------------------------------------------------------------------------------- /Documentation/images/guides/force-tls/force-tls-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/force-tls/force-tls-success.png -------------------------------------------------------------------------------- /Documentation/images/guides/force-tls/force-tls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/force-tls/force-tls.png -------------------------------------------------------------------------------- /Documentation/images/guides/force-tls/secure-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/force-tls/secure-url.png -------------------------------------------------------------------------------- /Documentation/images/guides/geoip/geoip-prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/geoip/geoip-prompt.png -------------------------------------------------------------------------------- /Documentation/images/guides/geoip/geoip-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/geoip/geoip-settings.png -------------------------------------------------------------------------------- /Documentation/images/guides/image-optimization/io_default_config_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/image-optimization/io_default_config_dialog.png -------------------------------------------------------------------------------- /Documentation/images/guides/image-optimization/io_main_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/image-optimization/io_main_screen.png -------------------------------------------------------------------------------- /Documentation/images/guides/image-optimization/io_not_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/image-optimization/io_not_enabled.png -------------------------------------------------------------------------------- /Documentation/images/guides/image-optimization/io_tunables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/image-optimization/io_tunables.png -------------------------------------------------------------------------------- /Documentation/images/guides/installation/account-api-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/installation/account-api-key.png -------------------------------------------------------------------------------- /Documentation/images/guides/installation/choosefastly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/installation/choosefastly.png -------------------------------------------------------------------------------- /Documentation/images/guides/installation/clearcache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/installation/clearcache.png -------------------------------------------------------------------------------- /Documentation/images/guides/installation/golive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/installation/golive.png -------------------------------------------------------------------------------- /Documentation/images/guides/installation/newfeatures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/installation/newfeatures.png -------------------------------------------------------------------------------- /Documentation/images/guides/installation/show-service-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/installation/show-service-id.png -------------------------------------------------------------------------------- /Documentation/images/guides/installation/successvcl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/installation/successvcl.png -------------------------------------------------------------------------------- /Documentation/images/guides/installation/testcredentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/installation/testcredentials.png -------------------------------------------------------------------------------- /Documentation/images/guides/installation/vclupload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/installation/vclupload.png -------------------------------------------------------------------------------- /Documentation/images/guides/installation/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/installation/wizard.png -------------------------------------------------------------------------------- /Documentation/images/guides/maintenance-mode/maint-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/maintenance-mode/maint-mode.png -------------------------------------------------------------------------------- /Documentation/images/guides/rate-limiting/rate-limiting1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/rate-limiting/rate-limiting1.png -------------------------------------------------------------------------------- /Documentation/images/guides/rate-limiting/rate-limiting2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/rate-limiting/rate-limiting2.png -------------------------------------------------------------------------------- /Documentation/images/guides/vcl-snippets/after_snippet_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/vcl-snippets/after_snippet_create.png -------------------------------------------------------------------------------- /Documentation/images/guides/vcl-snippets/snippet_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/vcl-snippets/snippet_create.png -------------------------------------------------------------------------------- /Documentation/images/guides/vcl-snippets/vcl_snippets_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/vcl-snippets/vcl_snippets_main.png -------------------------------------------------------------------------------- /Documentation/images/guides/webhooks/example_notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/webhooks/example_notifications.png -------------------------------------------------------------------------------- /Documentation/images/guides/webhooks/webhooks_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Documentation/images/guides/webhooks/webhooks_ui.png -------------------------------------------------------------------------------- /Helper/Acl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Helper/Acl.php -------------------------------------------------------------------------------- /Helper/AutomaticCompression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Helper/AutomaticCompression.php -------------------------------------------------------------------------------- /Helper/CacheTags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Helper/CacheTags.php -------------------------------------------------------------------------------- /Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Helper/Data.php -------------------------------------------------------------------------------- /Helper/Manifest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Helper/Manifest.php -------------------------------------------------------------------------------- /Helper/StoreMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Helper/StoreMessage.php -------------------------------------------------------------------------------- /Helper/Vcl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Helper/Vcl.php -------------------------------------------------------------------------------- /LICENSE_FASTLY_CDN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/LICENSE_FASTLY_CDN.txt -------------------------------------------------------------------------------- /Model/AdaptivePixelRatio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/AdaptivePixelRatio.php -------------------------------------------------------------------------------- /Model/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/Api.php -------------------------------------------------------------------------------- /Model/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/Config.php -------------------------------------------------------------------------------- /Model/Config/Backend/AutomaticCompression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/Config/Backend/AutomaticCompression.php -------------------------------------------------------------------------------- /Model/Config/Backend/BlocklistAllowlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/Config/Backend/BlocklistAllowlist.php -------------------------------------------------------------------------------- /Model/Config/Backend/CustomSnippetUpload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/Config/Backend/CustomSnippetUpload.php -------------------------------------------------------------------------------- /Model/Config/Backend/Geoipcountry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/Config/Backend/Geoipcountry.php -------------------------------------------------------------------------------- /Model/Config/Backend/ImportFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/Config/Backend/ImportFile.php -------------------------------------------------------------------------------- /Model/Config/Backend/ListAcl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/Config/Backend/ListAcl.php -------------------------------------------------------------------------------- /Model/Config/Backend/PixelRatios.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/Config/Backend/PixelRatios.php -------------------------------------------------------------------------------- /Model/Config/Backend/ValidateInt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/Config/Backend/ValidateInt.php -------------------------------------------------------------------------------- /Model/Config/ConfigRewrite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/Config/ConfigRewrite.php -------------------------------------------------------------------------------- /Model/Config/GeolocationRedirectMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/Config/GeolocationRedirectMatcher.php -------------------------------------------------------------------------------- /Model/FrontControllerPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/FrontControllerPlugin.php -------------------------------------------------------------------------------- /Model/Importer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/Importer.php -------------------------------------------------------------------------------- /Model/Layout/LayoutPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/Layout/LayoutPlugin.php -------------------------------------------------------------------------------- /Model/Manifest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/Manifest.php -------------------------------------------------------------------------------- /Model/Modly/Manifest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/Modly/Manifest.php -------------------------------------------------------------------------------- /Model/Modly/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/Modly/Node.php -------------------------------------------------------------------------------- /Model/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/Notification.php -------------------------------------------------------------------------------- /Model/PageCache/ConfigPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/PageCache/ConfigPlugin.php -------------------------------------------------------------------------------- /Model/PageCache/PurgeCachePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/PageCache/PurgeCachePlugin.php -------------------------------------------------------------------------------- /Model/Product/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/Product/Image.php -------------------------------------------------------------------------------- /Model/PurgeCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/PurgeCache.php -------------------------------------------------------------------------------- /Model/Resolver/GeoIP/CountryCodeProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/Resolver/GeoIP/CountryCodeProviderInterface.php -------------------------------------------------------------------------------- /Model/Resolver/GeoIP/HttpCountryProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/Resolver/GeoIP/HttpCountryProvider.php -------------------------------------------------------------------------------- /Model/ResourceModel/Manifest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/ResourceModel/Manifest.php -------------------------------------------------------------------------------- /Model/ResourceModel/Manifest/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/ResourceModel/Manifest/Collection.php -------------------------------------------------------------------------------- /Model/ResourceModel/Statistic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/ResourceModel/Statistic.php -------------------------------------------------------------------------------- /Model/ResourceModel/Statistic/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/ResourceModel/Statistic/Collection.php -------------------------------------------------------------------------------- /Model/ResponsePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/ResponsePlugin.php -------------------------------------------------------------------------------- /Model/Statistic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/Statistic.php -------------------------------------------------------------------------------- /Model/StatisticRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/StatisticRepository.php -------------------------------------------------------------------------------- /Model/System/Config/Shielding/DataCenters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/System/Config/Shielding/DataCenters.php -------------------------------------------------------------------------------- /Model/System/Config/Source/ApplicationPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/System/Config/Source/ApplicationPlugin.php -------------------------------------------------------------------------------- /Model/System/Config/Source/GeoIP/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/System/Config/Source/GeoIP/Action.php -------------------------------------------------------------------------------- /Model/System/Message/BetterImageOptimization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/System/Message/BetterImageOptimization.php -------------------------------------------------------------------------------- /Model/Upload/Acl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/Upload/Acl.php -------------------------------------------------------------------------------- /Model/Upload/Dictionary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/Upload/Dictionary.php -------------------------------------------------------------------------------- /Model/View/Asset/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Model/View/Asset/Image.php -------------------------------------------------------------------------------- /Observer/CheckVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Observer/CheckVersion.php -------------------------------------------------------------------------------- /Observer/ConfigurationSave.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Observer/ConfigurationSave.php -------------------------------------------------------------------------------- /Observer/FlushAllCacheObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Observer/FlushAllCacheObserver.php -------------------------------------------------------------------------------- /Observer/InvalidateVarnishObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Observer/InvalidateVarnishObserver.php -------------------------------------------------------------------------------- /Observer/MarkEsiBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Observer/MarkEsiBlock.php -------------------------------------------------------------------------------- /Observer/MarkEsiPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Observer/MarkEsiPage.php -------------------------------------------------------------------------------- /Observer/SendInstalledRequestToGA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Observer/SendInstalledRequestToGA.php -------------------------------------------------------------------------------- /Plugin/AdaptivePixelRatioPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Plugin/AdaptivePixelRatioPlugin.php -------------------------------------------------------------------------------- /Plugin/Block/Product/View/Type/ConfigurablePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Plugin/Block/Product/View/Type/ConfigurablePlugin.php -------------------------------------------------------------------------------- /Plugin/Catalog/Observer/DisableImageResizeAfterProductSave.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Plugin/Catalog/Observer/DisableImageResizeAfterProductSave.php -------------------------------------------------------------------------------- /Plugin/Config/StructurePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Plugin/Config/StructurePlugin.php -------------------------------------------------------------------------------- /Plugin/ExcludeFilesFromMinification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Plugin/ExcludeFilesFromMinification.php -------------------------------------------------------------------------------- /Plugin/GalleryPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Plugin/GalleryPlugin.php -------------------------------------------------------------------------------- /Plugin/GraphQl/AfterRenderResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Plugin/GraphQl/AfterRenderResult.php -------------------------------------------------------------------------------- /Plugin/MediaStorage/App/AroundMedia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Plugin/MediaStorage/App/AroundMedia.php -------------------------------------------------------------------------------- /Plugin/Swatches/Helper/Data/AppendSrcsetInformationPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Plugin/Swatches/Helper/Data/AppendSrcsetInformationPlugin.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/README.md -------------------------------------------------------------------------------- /Release-Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Release-Notes.md -------------------------------------------------------------------------------- /Setup/Patch/Data/ChangeConstValueInDb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Setup/Patch/Data/ChangeConstValueInDb.php -------------------------------------------------------------------------------- /Setup/Patch/Data/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Setup/Patch/Data/Config.php -------------------------------------------------------------------------------- /Setup/Patch/Data/InstalledFlag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Setup/Patch/Data/InstalledFlag.php -------------------------------------------------------------------------------- /Setup/Patch/Data/RateLimitPath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Setup/Patch/Data/RateLimitPath.php -------------------------------------------------------------------------------- /Test/Unit/Controller/Adminhtml/FastlyCdn/ExportVarnishConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Test/Unit/Controller/Adminhtml/FastlyCdn/ExportVarnishConfigTest.php -------------------------------------------------------------------------------- /Test/Unit/Model/Config/GeolocationRedirectMatcherTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Test/Unit/Model/Config/GeolocationRedirectMatcherTest.php -------------------------------------------------------------------------------- /Test/Unit/Model/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Test/Unit/Model/ConfigTest.php -------------------------------------------------------------------------------- /Test/Unit/Model/Layout/LayoutPluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Test/Unit/Model/Layout/LayoutPluginTest.php -------------------------------------------------------------------------------- /Test/Unit/Model/PageCache/ConfigPluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Test/Unit/Model/PageCache/ConfigPluginTest.php -------------------------------------------------------------------------------- /Test/Unit/Model/_files/result.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Test/Unit/Model/_files/result.vcl -------------------------------------------------------------------------------- /Test/Unit/Model/_files/test.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/Test/Unit/Model/_files/test.vcl -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.2.236 2 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/composer.json -------------------------------------------------------------------------------- /etc/adminhtml/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/adminhtml/di.xml -------------------------------------------------------------------------------- /etc/adminhtml/events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/adminhtml/events.xml -------------------------------------------------------------------------------- /etc/adminhtml/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/adminhtml/routes.xml -------------------------------------------------------------------------------- /etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/config.xml -------------------------------------------------------------------------------- /etc/db_schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/db_schema.xml -------------------------------------------------------------------------------- /etc/db_schema_whitelist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/db_schema_whitelist.json -------------------------------------------------------------------------------- /etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/di.xml -------------------------------------------------------------------------------- /etc/events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/events.xml -------------------------------------------------------------------------------- /etc/fastly_edge_modules/blackfire_integration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/fastly_edge_modules/blackfire_integration.json -------------------------------------------------------------------------------- /etc/fastly_edge_modules/cors_headers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/fastly_edge_modules/cors_headers.json -------------------------------------------------------------------------------- /etc/fastly_edge_modules/datadome_integration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/fastly_edge_modules/datadome_integration.json -------------------------------------------------------------------------------- /etc/fastly_edge_modules/disabled/aclblacklist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/fastly_edge_modules/disabled/aclblacklist.json -------------------------------------------------------------------------------- /etc/fastly_edge_modules/disabled/countryblock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/fastly_edge_modules/disabled/countryblock.json -------------------------------------------------------------------------------- /etc/fastly_edge_modules/disabled/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/fastly_edge_modules/disabled/error.json -------------------------------------------------------------------------------- /etc/fastly_edge_modules/disabled/esi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/fastly_edge_modules/disabled/esi.json -------------------------------------------------------------------------------- /etc/fastly_edge_modules/disabled/forcetls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/fastly_edge_modules/disabled/forcetls.json -------------------------------------------------------------------------------- /etc/fastly_edge_modules/disabled/gzip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/fastly_edge_modules/disabled/gzip.json -------------------------------------------------------------------------------- /etc/fastly_edge_modules/disabled/hostoverride.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/fastly_edge_modules/disabled/hostoverride.json -------------------------------------------------------------------------------- /etc/fastly_edge_modules/disabled/nocache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/fastly_edge_modules/disabled/nocache.json -------------------------------------------------------------------------------- /etc/fastly_edge_modules/disabled/normalise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/fastly_edge_modules/disabled/normalise.json -------------------------------------------------------------------------------- /etc/fastly_edge_modules/disabled/redirects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/fastly_edge_modules/disabled/redirects.json -------------------------------------------------------------------------------- /etc/fastly_edge_modules/disabled/stale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/fastly_edge_modules/disabled/stale.json -------------------------------------------------------------------------------- /etc/fastly_edge_modules/disabled/ttloverride.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/fastly_edge_modules/disabled/ttloverride.json -------------------------------------------------------------------------------- /etc/fastly_edge_modules/force_cache_miss_on_hard_reload_for_admins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/fastly_edge_modules/force_cache_miss_on_hard_reload_for_admins.json -------------------------------------------------------------------------------- /etc/fastly_edge_modules/increase_timeouts_long_jobs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/fastly_edge_modules/increase_timeouts_long_jobs.json -------------------------------------------------------------------------------- /etc/fastly_edge_modules/io_test_drive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/fastly_edge_modules/io_test_drive.json -------------------------------------------------------------------------------- /etc/fastly_edge_modules/magento_cloud_sitemap_rewrite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/fastly_edge_modules/magento_cloud_sitemap_rewrite.json -------------------------------------------------------------------------------- /etc/fastly_edge_modules/mobile_device_detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/fastly_edge_modules/mobile_device_detection.json -------------------------------------------------------------------------------- /etc/fastly_edge_modules/netacea_integration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/fastly_edge_modules/netacea_integration.json -------------------------------------------------------------------------------- /etc/fastly_edge_modules/other_cms_integration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/fastly_edge_modules/other_cms_integration.json -------------------------------------------------------------------------------- /etc/fastly_edge_modules/perimeterx_bot_defender.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/fastly_edge_modules/perimeterx_bot_defender.json -------------------------------------------------------------------------------- /etc/fastly_edge_modules/redirect_hosts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/fastly_edge_modules/redirect_hosts.json -------------------------------------------------------------------------------- /etc/fastly_edge_modules/sitespect_integration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/fastly_edge_modules/sitespect_integration.json -------------------------------------------------------------------------------- /etc/frontend/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/frontend/di.xml -------------------------------------------------------------------------------- /etc/frontend/events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/frontend/events.xml -------------------------------------------------------------------------------- /etc/frontend/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/frontend/routes.xml -------------------------------------------------------------------------------- /etc/graphql/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/graphql/di.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/module.xml -------------------------------------------------------------------------------- /etc/setup/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/setup/di.xml -------------------------------------------------------------------------------- /etc/shielding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/shielding/README.md -------------------------------------------------------------------------------- /etc/shielding/datacenters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/shielding/datacenters.json -------------------------------------------------------------------------------- /etc/vcl_snippets/deliver.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/vcl_snippets/deliver.vcl -------------------------------------------------------------------------------- /etc/vcl_snippets/error.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/vcl_snippets/error.vcl -------------------------------------------------------------------------------- /etc/vcl_snippets/fetch.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/vcl_snippets/fetch.vcl -------------------------------------------------------------------------------- /etc/vcl_snippets/hash.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/vcl_snippets/hash.vcl -------------------------------------------------------------------------------- /etc/vcl_snippets/miss.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/vcl_snippets/miss.vcl -------------------------------------------------------------------------------- /etc/vcl_snippets/pass.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/vcl_snippets/pass.vcl -------------------------------------------------------------------------------- /etc/vcl_snippets/recv.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/vcl_snippets/recv.vcl -------------------------------------------------------------------------------- /etc/vcl_snippets_basic_auth/error.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/vcl_snippets_basic_auth/error.vcl -------------------------------------------------------------------------------- /etc/vcl_snippets_basic_auth/recv.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/vcl_snippets_basic_auth/recv.vcl -------------------------------------------------------------------------------- /etc/vcl_snippets_blocking/recv.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/vcl_snippets_blocking/recv.vcl -------------------------------------------------------------------------------- /etc/vcl_snippets_error_page/deliver.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/vcl_snippets_error_page/deliver.vcl -------------------------------------------------------------------------------- /etc/vcl_snippets_force_tls/deliver.vcl: -------------------------------------------------------------------------------- 1 | set resp.http.strict-transport-security = "max-age=31536000"; 2 | -------------------------------------------------------------------------------- /etc/vcl_snippets_force_tls/recv.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/vcl_snippets_force_tls/recv.vcl -------------------------------------------------------------------------------- /etc/vcl_snippets_http_3/recv.vcl: -------------------------------------------------------------------------------- 1 | # Snippet for enabling HTTP/3 logic directly through VCL 2 | h3.alt_svc(); 3 | -------------------------------------------------------------------------------- /etc/vcl_snippets_image_optimizations/recv.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/vcl_snippets_image_optimizations/recv.vcl -------------------------------------------------------------------------------- /etc/vcl_snippets_rate_limiting/deliver.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/vcl_snippets_rate_limiting/deliver.vcl -------------------------------------------------------------------------------- /etc/vcl_snippets_rate_limiting/fetch.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/vcl_snippets_rate_limiting/fetch.vcl -------------------------------------------------------------------------------- /etc/vcl_snippets_rate_limiting/hash.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/vcl_snippets_rate_limiting/hash.vcl -------------------------------------------------------------------------------- /etc/vcl_snippets_rate_limiting/miss.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/vcl_snippets_rate_limiting/miss.vcl -------------------------------------------------------------------------------- /etc/vcl_snippets_rate_limiting/recv.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/vcl_snippets_rate_limiting/recv.vcl -------------------------------------------------------------------------------- /etc/vcl_snippets_waf/recv.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/vcl_snippets_waf/recv.vcl -------------------------------------------------------------------------------- /etc/webapi_rest/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/etc/webapi_rest/di.xml -------------------------------------------------------------------------------- /i18n/de_DE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/i18n/de_DE.csv -------------------------------------------------------------------------------- /i18n/en_US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/i18n/en_US.csv -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/registration.php -------------------------------------------------------------------------------- /update_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/update_version.sh -------------------------------------------------------------------------------- /view/adminhtml/layout/adminhtml_cache_index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/layout/adminhtml_cache_index.xml -------------------------------------------------------------------------------- /view/adminhtml/layout/adminhtml_system_config_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/layout/adminhtml_system_config_edit.xml -------------------------------------------------------------------------------- /view/adminhtml/layout/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/layout/default.xml -------------------------------------------------------------------------------- /view/adminhtml/requirejs-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/requirejs-config.js -------------------------------------------------------------------------------- /view/adminhtml/templates/dashboard/stats/historic.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/dashboard/stats/historic.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/cache/additional.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/cache/additional.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/dialogs.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/dialogs.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/acl.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/acl.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/allModulesBtn.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/allModulesBtn.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/array.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/array.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/auth.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/auth.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/backend.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/backend.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/blockingBtn.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/blockingBtn.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/checkbox.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/checkbox.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/createBackendBtn.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/createBackendBtn.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/createLogEndpointBtn.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/createLogEndpointBtn.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/customSnippetBtn.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/customSnippetBtn.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/customSnippets.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/customSnippets.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/domains.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/domains.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/edge.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/edge.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/enableAuth.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/enableAuth.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/errorPageBtn.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/errorPageBtn.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/exportBtn.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/exportBtn.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/http3_btn.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/http3_btn.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/imageBtn.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/imageBtn.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/importBtn.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/importBtn.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/ioConfigOptionsBtn.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/ioConfigOptionsBtn.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/logEndpoint.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/logEndpoint.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/manifestBtn.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/manifestBtn.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/modlyActiveModules.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/modlyActiveModules.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/pathsBtn.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/pathsBtn.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/suBtn.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/suBtn.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/testConnectionBtn.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/testConnectionBtn.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/tlsBtn.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/tlsBtn.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/toggleRateLimitingBtn.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/toggleRateLimitingBtn.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/updateBlockingBtn.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/updateBlockingBtn.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/updateBypassBtn.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/updateBypassBtn.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/updateSuBtn.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/updateSuBtn.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/uploadVclBtn.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/uploadVclBtn.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/versionHistory.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/versionHistory.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/wafBtn.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/wafBtn.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/wafBypassBtn.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/wafBypassBtn.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/field/wafPageBtn.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/field/wafPageBtn.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/form/log/azure.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/templates/system/config/form/log/azure.phtml -------------------------------------------------------------------------------- /view/adminhtml/web/css/fastly.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/css/fastly.css -------------------------------------------------------------------------------- /view/adminhtml/web/images/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/images/cloud.svg -------------------------------------------------------------------------------- /view/adminhtml/web/images/fastly.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/images/fastly.gif -------------------------------------------------------------------------------- /view/adminhtml/web/images/fastly16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/images/fastly16.gif -------------------------------------------------------------------------------- /view/adminhtml/web/images/fastly32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/images/fastly32.gif -------------------------------------------------------------------------------- /view/adminhtml/web/images/fastly48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/images/fastly48.gif -------------------------------------------------------------------------------- /view/adminhtml/web/images/view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/images/view.svg -------------------------------------------------------------------------------- /view/adminhtml/web/js/backends.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/backends.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/basic-authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/basic-authentication.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/blocking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/blocking.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/custom-snippets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/custom-snippets.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/custom-synthetic-pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/custom-synthetic-pages.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/domains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/domains.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/edge-acl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/edge-acl.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/edge-dictionaries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/edge-dictionaries.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/error-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/error-message.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/export.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/handlebars-v4.7.7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/handlebars-v4.7.7.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/historicstats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/historicstats.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/http3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/http3.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/image-optimization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/image-optimization.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/import-export-renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/import-export-renderer.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/import.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/init.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/log-endpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/log-endpoints.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/maintenance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/maintenance.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/modly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/modly.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/overlay.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/rate-limiting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/rate-limiting.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/reset-all-messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/reset-all-messages.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/service-label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/service-label.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/success-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/success-message.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/system/cache/additional.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/system/cache/additional.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/system/config/form/field/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/system/config/form/field/array.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/testconnection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/testconnection.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/tls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/tls.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/upload-vcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/upload-vcl.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/version-history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/version-history.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/waf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/waf.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/wafBypass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/wafBypass.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/warning-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/adminhtml/web/js/warning-message.js -------------------------------------------------------------------------------- /view/frontend/layout/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/frontend/layout/default.xml -------------------------------------------------------------------------------- /view/frontend/layout/geoip_getaction_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/frontend/layout/geoip_getaction_dialog.xml -------------------------------------------------------------------------------- /view/frontend/layout/geoip_getaction_redirect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/frontend/layout/geoip_getaction_redirect.xml -------------------------------------------------------------------------------- /view/frontend/requirejs-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/frontend/requirejs-config.js -------------------------------------------------------------------------------- /view/frontend/templates/geoip/dialog.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/frontend/templates/geoip/dialog.phtml -------------------------------------------------------------------------------- /view/frontend/templates/geoip/redirect.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/frontend/templates/geoip/redirect.phtml -------------------------------------------------------------------------------- /view/frontend/web/js/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/frontend/web/js/dialog.js -------------------------------------------------------------------------------- /view/frontend/web/js/gallery/gallery-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/frontend/web/js/gallery/gallery-mixin.js -------------------------------------------------------------------------------- /view/frontend/web/js/swatch-renderer-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/fastly-magento2/HEAD/view/frontend/web/js/swatch-renderer-mixin.js --------------------------------------------------------------------------------