├── .gitignore ├── Dockerfile ├── README.md ├── docker-compose-local.yml ├── docker-compose.yml └── root ├── app ├── default-vhost.tmpl ├── php-config.tmpl └── php-fpm-pool.tmpl └── etc ├── cron.d └── app ├── my_init.d ├── 51_setup_nginx.sh ├── 90_configure.php.sh └── 99_setup_ssh.sh ├── nginx └── nginx.conf └── service ├── nginx └── run └── php-fpm └── run /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauzie/docker-whmcs/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauzie/docker-whmcs/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauzie/docker-whmcs/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose-local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauzie/docker-whmcs/HEAD/docker-compose-local.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauzie/docker-whmcs/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /root/app/default-vhost.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauzie/docker-whmcs/HEAD/root/app/default-vhost.tmpl -------------------------------------------------------------------------------- /root/app/php-config.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauzie/docker-whmcs/HEAD/root/app/php-config.tmpl -------------------------------------------------------------------------------- /root/app/php-fpm-pool.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauzie/docker-whmcs/HEAD/root/app/php-fpm-pool.tmpl -------------------------------------------------------------------------------- /root/etc/cron.d/app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauzie/docker-whmcs/HEAD/root/etc/cron.d/app -------------------------------------------------------------------------------- /root/etc/my_init.d/51_setup_nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauzie/docker-whmcs/HEAD/root/etc/my_init.d/51_setup_nginx.sh -------------------------------------------------------------------------------- /root/etc/my_init.d/90_configure.php.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauzie/docker-whmcs/HEAD/root/etc/my_init.d/90_configure.php.sh -------------------------------------------------------------------------------- /root/etc/my_init.d/99_setup_ssh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauzie/docker-whmcs/HEAD/root/etc/my_init.d/99_setup_ssh.sh -------------------------------------------------------------------------------- /root/etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauzie/docker-whmcs/HEAD/root/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /root/etc/service/nginx/run: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exec nginx -g 'daemon off;' 4 | -------------------------------------------------------------------------------- /root/etc/service/php-fpm/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauzie/docker-whmcs/HEAD/root/etc/service/php-fpm/run --------------------------------------------------------------------------------