├── .gitignore ├── README.markdown ├── Vagrantfile ├── bootstrap.sh ├── configs ├── .byobu │ ├── keybindings.tmux │ └── status └── byobu.sh ├── mysql ├── create_database.sh ├── db_dump.sh ├── import_database.sh └── mysql.sh ├── nginx ├── default.conf ├── fastcgi_params.conf ├── generic.conf ├── nginx.conf └── nginx.sh ├── php ├── 20-xdebug.ini ├── php.ini ├── php.sh └── www.conf ├── settings.sh └── wp ├── install-wp.sh ├── wp-cli.config.yml └── wp-cli.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | *.box 3 | db_dumps 4 | -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalquery/wp-vagrant/HEAD/README.markdown -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalquery/wp-vagrant/HEAD/Vagrantfile -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalquery/wp-vagrant/HEAD/bootstrap.sh -------------------------------------------------------------------------------- /configs/.byobu/keybindings.tmux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalquery/wp-vagrant/HEAD/configs/.byobu/keybindings.tmux -------------------------------------------------------------------------------- /configs/.byobu/status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalquery/wp-vagrant/HEAD/configs/.byobu/status -------------------------------------------------------------------------------- /configs/byobu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalquery/wp-vagrant/HEAD/configs/byobu.sh -------------------------------------------------------------------------------- /mysql/create_database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalquery/wp-vagrant/HEAD/mysql/create_database.sh -------------------------------------------------------------------------------- /mysql/db_dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalquery/wp-vagrant/HEAD/mysql/db_dump.sh -------------------------------------------------------------------------------- /mysql/import_database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalquery/wp-vagrant/HEAD/mysql/import_database.sh -------------------------------------------------------------------------------- /mysql/mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalquery/wp-vagrant/HEAD/mysql/mysql.sh -------------------------------------------------------------------------------- /nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalquery/wp-vagrant/HEAD/nginx/default.conf -------------------------------------------------------------------------------- /nginx/fastcgi_params.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalquery/wp-vagrant/HEAD/nginx/fastcgi_params.conf -------------------------------------------------------------------------------- /nginx/generic.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalquery/wp-vagrant/HEAD/nginx/generic.conf -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalquery/wp-vagrant/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /nginx/nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalquery/wp-vagrant/HEAD/nginx/nginx.sh -------------------------------------------------------------------------------- /php/20-xdebug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalquery/wp-vagrant/HEAD/php/20-xdebug.ini -------------------------------------------------------------------------------- /php/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalquery/wp-vagrant/HEAD/php/php.ini -------------------------------------------------------------------------------- /php/php.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalquery/wp-vagrant/HEAD/php/php.sh -------------------------------------------------------------------------------- /php/www.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalquery/wp-vagrant/HEAD/php/www.conf -------------------------------------------------------------------------------- /settings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalquery/wp-vagrant/HEAD/settings.sh -------------------------------------------------------------------------------- /wp/install-wp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalquery/wp-vagrant/HEAD/wp/install-wp.sh -------------------------------------------------------------------------------- /wp/wp-cli.config.yml: -------------------------------------------------------------------------------- 1 | path: /vagrant 2 | -------------------------------------------------------------------------------- /wp/wp-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalquery/wp-vagrant/HEAD/wp/wp-cli.sh --------------------------------------------------------------------------------