├── .env ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── config ├── nginx │ ├── cfg │ │ ├── nginx-custom-configs.conf │ │ └── nginx-wp-hardening.conf │ └── tpl │ │ ├── nginx-http.conf.template │ │ └── nginx-https.conf.example └── php.conf.ini ├── data └── certbot │ ├── conf │ └── .placeholder │ └── www │ └── .placeholder ├── docker-compose-build.yml ├── docker-compose-dev.yml ├── docker-compose-prod.yml ├── dump_mysql.sh ├── init_letsencrypt.sh ├── mysql-dumps └── .placeholder ├── push.sh ├── wordpress-sql └── .placeholder ├── wordpress-src └── .placeholder └── wordpress ├── Dockerfile └── adduser.sh /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garutilorenzo/wordpress-docker/HEAD/.env -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garutilorenzo/wordpress-docker/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garutilorenzo/wordpress-docker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garutilorenzo/wordpress-docker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garutilorenzo/wordpress-docker/HEAD/README.md -------------------------------------------------------------------------------- /config/nginx/cfg/nginx-custom-configs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garutilorenzo/wordpress-docker/HEAD/config/nginx/cfg/nginx-custom-configs.conf -------------------------------------------------------------------------------- /config/nginx/cfg/nginx-wp-hardening.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garutilorenzo/wordpress-docker/HEAD/config/nginx/cfg/nginx-wp-hardening.conf -------------------------------------------------------------------------------- /config/nginx/tpl/nginx-http.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garutilorenzo/wordpress-docker/HEAD/config/nginx/tpl/nginx-http.conf.template -------------------------------------------------------------------------------- /config/nginx/tpl/nginx-https.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garutilorenzo/wordpress-docker/HEAD/config/nginx/tpl/nginx-https.conf.example -------------------------------------------------------------------------------- /config/php.conf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garutilorenzo/wordpress-docker/HEAD/config/php.conf.ini -------------------------------------------------------------------------------- /data/certbot/conf/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/certbot/www/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garutilorenzo/wordpress-docker/HEAD/docker-compose-build.yml -------------------------------------------------------------------------------- /docker-compose-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garutilorenzo/wordpress-docker/HEAD/docker-compose-dev.yml -------------------------------------------------------------------------------- /docker-compose-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garutilorenzo/wordpress-docker/HEAD/docker-compose-prod.yml -------------------------------------------------------------------------------- /dump_mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garutilorenzo/wordpress-docker/HEAD/dump_mysql.sh -------------------------------------------------------------------------------- /init_letsencrypt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garutilorenzo/wordpress-docker/HEAD/init_letsencrypt.sh -------------------------------------------------------------------------------- /mysql-dumps/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garutilorenzo/wordpress-docker/HEAD/push.sh -------------------------------------------------------------------------------- /wordpress-sql/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wordpress-src/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wordpress/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garutilorenzo/wordpress-docker/HEAD/wordpress/Dockerfile -------------------------------------------------------------------------------- /wordpress/adduser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garutilorenzo/wordpress-docker/HEAD/wordpress/adduser.sh --------------------------------------------------------------------------------