├── .gitignore ├── LICENSE ├── README.md ├── Vagrantfile ├── config.sh ├── configs ├── apache2 │ ├── apache2.debug.conf │ ├── apache2.production.conf │ ├── conf │ │ ├── charset.conf │ │ ├── other-vhosts-access-log.conf │ │ ├── security.debug.conf │ │ └── security.production.conf │ ├── mods │ │ ├── alias.conf │ │ ├── deflate.conf │ │ ├── dir.conf │ │ ├── expires.conf │ │ ├── headers.conf │ │ ├── mime.conf │ │ ├── mpm_prefork.conf │ │ ├── php5.conf │ │ ├── rpaf.conf │ │ └── setenvif.conf │ └── ports.conf ├── apt │ ├── java.list │ └── postgres.trusty.list ├── mariadb │ └── my.cnf ├── mysql │ └── my.cnf ├── nginx │ ├── nginx.debug.conf │ └── nginx.production.conf ├── php │ ├── 5.6 │ │ ├── php-fpm.debug.conf │ │ ├── php-fpm.origin.conf │ │ ├── php-fpm.production.conf │ │ ├── php.debug.ini │ │ ├── php.origin.ini │ │ ├── php.production.ini │ │ ├── www.debug.conf │ │ ├── www.origin.conf │ │ └── www.production.conf │ ├── 7.0 │ │ ├── php-fpm.debug.conf │ │ ├── php-fpm.origin.conf │ │ ├── php-fpm.production.conf │ │ ├── php.debug.ini │ │ ├── php.origin.ini │ │ ├── php.production.ini │ │ ├── www.debug.conf │ │ ├── www.origin.conf │ │ └── www.production.conf │ └── 7.1 │ │ ├── php-fpm.debug.conf │ │ ├── php-fpm.origin.conf │ │ ├── php-fpm.production.conf │ │ ├── php.debug.ini │ │ ├── php.origin.ini │ │ ├── php.production.ini │ │ ├── www.debug.conf │ │ ├── www.origin.conf │ │ └── www.production.conf ├── postgres │ └── postgresql.conf └── ssh │ └── sshd_config ├── manual.sh └── scripts ├── apache2-install.sh ├── apache2-php-install.sh ├── composer-install.sh ├── java-install.sh ├── mariadb-install.sh ├── mariadb-php-install.sh ├── memcached-install.sh ├── memcached-php-install.sh ├── mysql-install.sh ├── mysql-php-install.sh ├── nginx-apache2-php-install.sh ├── nginx-install.sh ├── nginx-php-install.sh ├── php-install.sh ├── postgres-install.sh ├── postgres-php-install.sh ├── server-init.sh ├── server-install.sh ├── tests.sh ├── tests ├── apache2-install.sh ├── composer-install.sh └── php-install.sh ├── utils-db-install.sh ├── utils-install.sh └── utils ├── apache2 ├── create-host.sh ├── disable-host.sh └── enable-host.sh ├── backup-mysql-db.sh ├── backup-postgres-db.sh ├── create-mysql-db.sh ├── create-postgres-db.sh ├── create-web-user.sh ├── delete-host.sh ├── extract.sh ├── functions.sh ├── nginx ├── create-host.sh ├── disable-host.sh └── enable-host.sh └── nginx_apache2 ├── create-host.sh ├── disable-host.sh └── enable-host.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/Vagrantfile -------------------------------------------------------------------------------- /config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/config.sh -------------------------------------------------------------------------------- /configs/apache2/apache2.debug.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/apache2/apache2.debug.conf -------------------------------------------------------------------------------- /configs/apache2/apache2.production.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/apache2/apache2.production.conf -------------------------------------------------------------------------------- /configs/apache2/conf/charset.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/apache2/conf/charset.conf -------------------------------------------------------------------------------- /configs/apache2/conf/other-vhosts-access-log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/apache2/conf/other-vhosts-access-log.conf -------------------------------------------------------------------------------- /configs/apache2/conf/security.debug.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/apache2/conf/security.debug.conf -------------------------------------------------------------------------------- /configs/apache2/conf/security.production.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/apache2/conf/security.production.conf -------------------------------------------------------------------------------- /configs/apache2/mods/alias.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/apache2/mods/alias.conf -------------------------------------------------------------------------------- /configs/apache2/mods/deflate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/apache2/mods/deflate.conf -------------------------------------------------------------------------------- /configs/apache2/mods/dir.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/apache2/mods/dir.conf -------------------------------------------------------------------------------- /configs/apache2/mods/expires.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/apache2/mods/expires.conf -------------------------------------------------------------------------------- /configs/apache2/mods/headers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/apache2/mods/headers.conf -------------------------------------------------------------------------------- /configs/apache2/mods/mime.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/apache2/mods/mime.conf -------------------------------------------------------------------------------- /configs/apache2/mods/mpm_prefork.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/apache2/mods/mpm_prefork.conf -------------------------------------------------------------------------------- /configs/apache2/mods/php5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/apache2/mods/php5.conf -------------------------------------------------------------------------------- /configs/apache2/mods/rpaf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/apache2/mods/rpaf.conf -------------------------------------------------------------------------------- /configs/apache2/mods/setenvif.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/apache2/mods/setenvif.conf -------------------------------------------------------------------------------- /configs/apache2/ports.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/apache2/ports.conf -------------------------------------------------------------------------------- /configs/apt/java.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/apt/java.list -------------------------------------------------------------------------------- /configs/apt/postgres.trusty.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/apt/postgres.trusty.list -------------------------------------------------------------------------------- /configs/mariadb/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/mariadb/my.cnf -------------------------------------------------------------------------------- /configs/mysql/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/mysql/my.cnf -------------------------------------------------------------------------------- /configs/nginx/nginx.debug.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/nginx/nginx.debug.conf -------------------------------------------------------------------------------- /configs/nginx/nginx.production.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/nginx/nginx.production.conf -------------------------------------------------------------------------------- /configs/php/5.6/php-fpm.debug.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/php/5.6/php-fpm.debug.conf -------------------------------------------------------------------------------- /configs/php/5.6/php-fpm.origin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/php/5.6/php-fpm.origin.conf -------------------------------------------------------------------------------- /configs/php/5.6/php-fpm.production.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/php/5.6/php-fpm.production.conf -------------------------------------------------------------------------------- /configs/php/5.6/php.debug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/php/5.6/php.debug.ini -------------------------------------------------------------------------------- /configs/php/5.6/php.origin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/php/5.6/php.origin.ini -------------------------------------------------------------------------------- /configs/php/5.6/php.production.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/php/5.6/php.production.ini -------------------------------------------------------------------------------- /configs/php/5.6/www.debug.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/php/5.6/www.debug.conf -------------------------------------------------------------------------------- /configs/php/5.6/www.origin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/php/5.6/www.origin.conf -------------------------------------------------------------------------------- /configs/php/5.6/www.production.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/php/5.6/www.production.conf -------------------------------------------------------------------------------- /configs/php/7.0/php-fpm.debug.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/php/7.0/php-fpm.debug.conf -------------------------------------------------------------------------------- /configs/php/7.0/php-fpm.origin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/php/7.0/php-fpm.origin.conf -------------------------------------------------------------------------------- /configs/php/7.0/php-fpm.production.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/php/7.0/php-fpm.production.conf -------------------------------------------------------------------------------- /configs/php/7.0/php.debug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/php/7.0/php.debug.ini -------------------------------------------------------------------------------- /configs/php/7.0/php.origin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/php/7.0/php.origin.ini -------------------------------------------------------------------------------- /configs/php/7.0/php.production.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/php/7.0/php.production.ini -------------------------------------------------------------------------------- /configs/php/7.0/www.debug.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/php/7.0/www.debug.conf -------------------------------------------------------------------------------- /configs/php/7.0/www.origin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/php/7.0/www.origin.conf -------------------------------------------------------------------------------- /configs/php/7.0/www.production.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/php/7.0/www.production.conf -------------------------------------------------------------------------------- /configs/php/7.1/php-fpm.debug.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/php/7.1/php-fpm.debug.conf -------------------------------------------------------------------------------- /configs/php/7.1/php-fpm.origin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/php/7.1/php-fpm.origin.conf -------------------------------------------------------------------------------- /configs/php/7.1/php-fpm.production.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/php/7.1/php-fpm.production.conf -------------------------------------------------------------------------------- /configs/php/7.1/php.debug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/php/7.1/php.debug.ini -------------------------------------------------------------------------------- /configs/php/7.1/php.origin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/php/7.1/php.origin.ini -------------------------------------------------------------------------------- /configs/php/7.1/php.production.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/php/7.1/php.production.ini -------------------------------------------------------------------------------- /configs/php/7.1/www.debug.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/php/7.1/www.debug.conf -------------------------------------------------------------------------------- /configs/php/7.1/www.origin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/php/7.1/www.origin.conf -------------------------------------------------------------------------------- /configs/php/7.1/www.production.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/php/7.1/www.production.conf -------------------------------------------------------------------------------- /configs/postgres/postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/postgres/postgresql.conf -------------------------------------------------------------------------------- /configs/ssh/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/configs/ssh/sshd_config -------------------------------------------------------------------------------- /manual.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/manual.sh -------------------------------------------------------------------------------- /scripts/apache2-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/apache2-install.sh -------------------------------------------------------------------------------- /scripts/apache2-php-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/apache2-php-install.sh -------------------------------------------------------------------------------- /scripts/composer-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/composer-install.sh -------------------------------------------------------------------------------- /scripts/java-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/java-install.sh -------------------------------------------------------------------------------- /scripts/mariadb-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/mariadb-install.sh -------------------------------------------------------------------------------- /scripts/mariadb-php-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/mariadb-php-install.sh -------------------------------------------------------------------------------- /scripts/memcached-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/memcached-install.sh -------------------------------------------------------------------------------- /scripts/memcached-php-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/memcached-php-install.sh -------------------------------------------------------------------------------- /scripts/mysql-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/mysql-install.sh -------------------------------------------------------------------------------- /scripts/mysql-php-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/mysql-php-install.sh -------------------------------------------------------------------------------- /scripts/nginx-apache2-php-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/nginx-apache2-php-install.sh -------------------------------------------------------------------------------- /scripts/nginx-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/nginx-install.sh -------------------------------------------------------------------------------- /scripts/nginx-php-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/nginx-php-install.sh -------------------------------------------------------------------------------- /scripts/php-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/php-install.sh -------------------------------------------------------------------------------- /scripts/postgres-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/postgres-install.sh -------------------------------------------------------------------------------- /scripts/postgres-php-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/postgres-php-install.sh -------------------------------------------------------------------------------- /scripts/server-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/server-init.sh -------------------------------------------------------------------------------- /scripts/server-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/server-install.sh -------------------------------------------------------------------------------- /scripts/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/tests.sh -------------------------------------------------------------------------------- /scripts/tests/apache2-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/tests/apache2-install.sh -------------------------------------------------------------------------------- /scripts/tests/composer-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/tests/composer-install.sh -------------------------------------------------------------------------------- /scripts/tests/php-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/tests/php-install.sh -------------------------------------------------------------------------------- /scripts/utils-db-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/utils-db-install.sh -------------------------------------------------------------------------------- /scripts/utils-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/utils-install.sh -------------------------------------------------------------------------------- /scripts/utils/apache2/create-host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/utils/apache2/create-host.sh -------------------------------------------------------------------------------- /scripts/utils/apache2/disable-host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/utils/apache2/disable-host.sh -------------------------------------------------------------------------------- /scripts/utils/apache2/enable-host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/utils/apache2/enable-host.sh -------------------------------------------------------------------------------- /scripts/utils/backup-mysql-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/utils/backup-mysql-db.sh -------------------------------------------------------------------------------- /scripts/utils/backup-postgres-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/utils/backup-postgres-db.sh -------------------------------------------------------------------------------- /scripts/utils/create-mysql-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/utils/create-mysql-db.sh -------------------------------------------------------------------------------- /scripts/utils/create-postgres-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/utils/create-postgres-db.sh -------------------------------------------------------------------------------- /scripts/utils/create-web-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/utils/create-web-user.sh -------------------------------------------------------------------------------- /scripts/utils/delete-host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/utils/delete-host.sh -------------------------------------------------------------------------------- /scripts/utils/extract.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/utils/extract.sh -------------------------------------------------------------------------------- /scripts/utils/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/utils/functions.sh -------------------------------------------------------------------------------- /scripts/utils/nginx/create-host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/utils/nginx/create-host.sh -------------------------------------------------------------------------------- /scripts/utils/nginx/disable-host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/utils/nginx/disable-host.sh -------------------------------------------------------------------------------- /scripts/utils/nginx/enable-host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/utils/nginx/enable-host.sh -------------------------------------------------------------------------------- /scripts/utils/nginx_apache2/create-host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/utils/nginx_apache2/create-host.sh -------------------------------------------------------------------------------- /scripts/utils/nginx_apache2/disable-host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/utils/nginx_apache2/disable-host.sh -------------------------------------------------------------------------------- /scripts/utils/nginx_apache2/enable-host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpsee/phpell/HEAD/scripts/utils/nginx_apache2/enable-host.sh --------------------------------------------------------------------------------