├── .gitignore ├── LICENSE ├── README.md ├── database.yml ├── docker-compose.yml ├── fileserver.yml ├── fileserver └── nginx.conf ├── litespeed.yml ├── mysql-init └── 01-create-databases.sql ├── nginx.yml ├── nginx └── nginx.conf ├── proxy.yml ├── uploads.ini └── wordpress.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nityam2007/StaticPress-Docker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nityam2007/StaticPress-Docker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nityam2007/StaticPress-Docker/HEAD/README.md -------------------------------------------------------------------------------- /database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nityam2007/StaticPress-Docker/HEAD/database.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nityam2007/StaticPress-Docker/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /fileserver.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nityam2007/StaticPress-Docker/HEAD/fileserver.yml -------------------------------------------------------------------------------- /fileserver/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nityam2007/StaticPress-Docker/HEAD/fileserver/nginx.conf -------------------------------------------------------------------------------- /litespeed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nityam2007/StaticPress-Docker/HEAD/litespeed.yml -------------------------------------------------------------------------------- /mysql-init/01-create-databases.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nityam2007/StaticPress-Docker/HEAD/mysql-init/01-create-databases.sql -------------------------------------------------------------------------------- /nginx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nityam2007/StaticPress-Docker/HEAD/nginx.yml -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nityam2007/StaticPress-Docker/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /proxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nityam2007/StaticPress-Docker/HEAD/proxy.yml -------------------------------------------------------------------------------- /uploads.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nityam2007/StaticPress-Docker/HEAD/uploads.ini -------------------------------------------------------------------------------- /wordpress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nityam2007/StaticPress-Docker/HEAD/wordpress.yml --------------------------------------------------------------------------------