├── Dockerfile ├── LICENSE.txt ├── README.md ├── basic.conf ├── default ├── default-ssl ├── directive-only ├── cache-file-descriptors.conf ├── cross-domain-insecure.conf ├── extra-security.conf ├── no-transform.conf ├── spdy.conf ├── ssl-stapling.conf ├── ssl.conf └── x-ua-compatible.conf ├── location ├── cache-busting.conf ├── cross-domain-fonts.conf ├── expires.conf └── protect-system-files.conf ├── mime.types ├── nginx.conf └── nginx_signing.key /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/docker-nginx/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/docker-nginx/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/docker-nginx/HEAD/README.md -------------------------------------------------------------------------------- /basic.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/docker-nginx/HEAD/basic.conf -------------------------------------------------------------------------------- /default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/docker-nginx/HEAD/default -------------------------------------------------------------------------------- /default-ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/docker-nginx/HEAD/default-ssl -------------------------------------------------------------------------------- /directive-only/cache-file-descriptors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/docker-nginx/HEAD/directive-only/cache-file-descriptors.conf -------------------------------------------------------------------------------- /directive-only/cross-domain-insecure.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/docker-nginx/HEAD/directive-only/cross-domain-insecure.conf -------------------------------------------------------------------------------- /directive-only/extra-security.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/docker-nginx/HEAD/directive-only/extra-security.conf -------------------------------------------------------------------------------- /directive-only/no-transform.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/docker-nginx/HEAD/directive-only/no-transform.conf -------------------------------------------------------------------------------- /directive-only/spdy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/docker-nginx/HEAD/directive-only/spdy.conf -------------------------------------------------------------------------------- /directive-only/ssl-stapling.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/docker-nginx/HEAD/directive-only/ssl-stapling.conf -------------------------------------------------------------------------------- /directive-only/ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/docker-nginx/HEAD/directive-only/ssl.conf -------------------------------------------------------------------------------- /directive-only/x-ua-compatible.conf: -------------------------------------------------------------------------------- 1 | # Force the latest IE version 2 | add_header "X-UA-Compatible" "IE=Edge"; 3 | -------------------------------------------------------------------------------- /location/cache-busting.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/docker-nginx/HEAD/location/cache-busting.conf -------------------------------------------------------------------------------- /location/cross-domain-fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/docker-nginx/HEAD/location/cross-domain-fonts.conf -------------------------------------------------------------------------------- /location/expires.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/docker-nginx/HEAD/location/expires.conf -------------------------------------------------------------------------------- /location/protect-system-files.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/docker-nginx/HEAD/location/protect-system-files.conf -------------------------------------------------------------------------------- /mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/docker-nginx/HEAD/mime.types -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/docker-nginx/HEAD/nginx.conf -------------------------------------------------------------------------------- /nginx_signing.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/docker-nginx/HEAD/nginx_signing.key --------------------------------------------------------------------------------