├── .editorconfig ├── 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 /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/.editorconfig -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/README.md -------------------------------------------------------------------------------- /conf.d/.default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/conf.d/.default.conf -------------------------------------------------------------------------------- /conf.d/no-ssl.default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/conf.d/no-ssl.default.conf -------------------------------------------------------------------------------- /conf.d/templates/example.com.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/conf.d/templates/example.com.conf -------------------------------------------------------------------------------- /conf.d/templates/no-ssl.example.com.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/conf.d/templates/no-ssl.example.com.conf -------------------------------------------------------------------------------- /h5bp/basic.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/basic.conf -------------------------------------------------------------------------------- /h5bp/cross-origin/requests.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/cross-origin/requests.conf -------------------------------------------------------------------------------- /h5bp/cross-origin/resource_timing.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/cross-origin/resource_timing.conf -------------------------------------------------------------------------------- /h5bp/errors/custom_errors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/errors/custom_errors.conf -------------------------------------------------------------------------------- /h5bp/location/security_file_access.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/location/security_file_access.conf -------------------------------------------------------------------------------- /h5bp/location/web_performance_filename-based_cache_busting.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/location/web_performance_filename-based_cache_busting.conf -------------------------------------------------------------------------------- /h5bp/location/web_performance_svgz-compression.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/location/web_performance_svgz-compression.conf -------------------------------------------------------------------------------- /h5bp/media_types/character_encodings.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/media_types/character_encodings.conf -------------------------------------------------------------------------------- /h5bp/media_types/media_types.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/media_types/media_types.conf -------------------------------------------------------------------------------- /h5bp/security/content-security-policy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/security/content-security-policy.conf -------------------------------------------------------------------------------- /h5bp/security/cross-origin-policy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/security/cross-origin-policy.conf -------------------------------------------------------------------------------- /h5bp/security/permissions-policy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/security/permissions-policy.conf -------------------------------------------------------------------------------- /h5bp/security/referrer-policy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/security/referrer-policy.conf -------------------------------------------------------------------------------- /h5bp/security/server_software_information.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/security/server_software_information.conf -------------------------------------------------------------------------------- /h5bp/security/strict-transport-security.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/security/strict-transport-security.conf -------------------------------------------------------------------------------- /h5bp/security/x-content-type-options.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/security/x-content-type-options.conf -------------------------------------------------------------------------------- /h5bp/security/x-frame-options.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/security/x-frame-options.conf -------------------------------------------------------------------------------- /h5bp/tls/certificate_files.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/tls/certificate_files.conf -------------------------------------------------------------------------------- /h5bp/tls/ocsp_stapling.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/tls/ocsp_stapling.conf -------------------------------------------------------------------------------- /h5bp/tls/policy_balanced.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/tls/policy_balanced.conf -------------------------------------------------------------------------------- /h5bp/tls/policy_strict.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/tls/policy_strict.conf -------------------------------------------------------------------------------- /h5bp/tls/ssl_engine.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/tls/ssl_engine.conf -------------------------------------------------------------------------------- /h5bp/web_performance/cache-control.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/web_performance/cache-control.conf -------------------------------------------------------------------------------- /h5bp/web_performance/cache-file-descriptors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/web_performance/cache-file-descriptors.conf -------------------------------------------------------------------------------- /h5bp/web_performance/cache_expiration.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/web_performance/cache_expiration.conf -------------------------------------------------------------------------------- /h5bp/web_performance/compression.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/web_performance/compression.conf -------------------------------------------------------------------------------- /h5bp/web_performance/content_transformation.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/web_performance/content_transformation.conf -------------------------------------------------------------------------------- /h5bp/web_performance/pre-compressed_content_brotli.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/web_performance/pre-compressed_content_brotli.conf -------------------------------------------------------------------------------- /h5bp/web_performance/pre-compressed_content_gzip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/h5bp/web_performance/pre-compressed_content_gzip.conf -------------------------------------------------------------------------------- /mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/mime.types -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5bp/server-configs-nginx/HEAD/nginx.conf --------------------------------------------------------------------------------