├── .dockerignore ├── Dockerfile ├── LICENSE ├── README.md ├── default.conf ├── docker-entrypoint.sh ├── proxy.conf ├── restrictions.conf └── wordpress.conf /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .gitignore 3 | LICENSE 4 | *.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/nginx-wordpress-docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/nginx-wordpress-docker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/nginx-wordpress-docker/HEAD/README.md -------------------------------------------------------------------------------- /default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/nginx-wordpress-docker/HEAD/default.conf -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/nginx-wordpress-docker/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/nginx-wordpress-docker/HEAD/proxy.conf -------------------------------------------------------------------------------- /restrictions.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/nginx-wordpress-docker/HEAD/restrictions.conf -------------------------------------------------------------------------------- /wordpress.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/nginx-wordpress-docker/HEAD/wordpress.conf --------------------------------------------------------------------------------