gitextract_6tgcy6ja/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── CODEOWNERS │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── dependabot.yml │ └── workflows/ │ ├── auto-merge.yml │ ├── lint.yml │ └── server.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── conf.d/ │ ├── .default.conf │ ├── no-ssl.default.conf │ └── templates/ │ ├── example.com.conf │ └── no-ssl.example.com.conf ├── h5bp/ │ ├── basic.conf │ ├── cross-origin/ │ │ ├── requests.conf │ │ └── resource_timing.conf │ ├── errors/ │ │ └── custom_errors.conf │ ├── location/ │ │ ├── security_file_access.conf │ │ ├── web_performance_filename-based_cache_busting.conf │ │ └── web_performance_svgz-compression.conf │ ├── media_types/ │ │ ├── character_encodings.conf │ │ └── media_types.conf │ ├── security/ │ │ ├── content-security-policy.conf │ │ ├── cross-origin-policy.conf │ │ ├── permissions-policy.conf │ │ ├── referrer-policy.conf │ │ ├── server_software_information.conf │ │ ├── strict-transport-security.conf │ │ ├── x-content-type-options.conf │ │ └── x-frame-options.conf │ ├── tls/ │ │ ├── certificate_files.conf │ │ ├── ocsp_stapling.conf │ │ ├── policy_balanced.conf │ │ ├── policy_strict.conf │ │ └── ssl_engine.conf │ └── web_performance/ │ ├── cache-control.conf │ ├── cache-file-descriptors.conf │ ├── cache_expiration.conf │ ├── compression.conf │ ├── content_transformation.conf │ ├── pre-compressed_content_brotli.conf │ └── pre-compressed_content_gzip.conf ├── mime.types └── nginx.conf