-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Several configuration added and modified
- Loading branch information
Francis S. Spencer
authored and
Francis S. Spencer
committed
Nov 15, 2017
1 parent
d739ed0
commit f3545ae
Showing
8 changed files
with
34 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ | |
.idea | ||
/etc/config.yaml | ||
/sites/* | ||
!/sites/.gitkeep |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,7 @@ Specifications | |
> - PHP 5.6 | ||
> - PHP 7.0 | ||
> - PHP 7.1 | ||
> - PhpMyAdmin | ||
> - XDebug | ||
> - Composer | ||
> - Redis | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
#!/usr/bin/env bash | ||
|
||
apt-get install -y build-essential nodejs | ||
apt-get install -y npm | ||
apt-get install -y build-essential nodejs 2> /dev/null | ||
apt-get install -y npm 2> /dev/null | ||
npm -v | ||
npm install -g gulp | ||
npm install -g grunt | ||
npm install -g grunt-cli | ||
npm install -g gulp 2> /dev/null | ||
npm install -g grunt 2> /dev/null | ||
npm install -g grunt-cli 2> /dev/null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
#!/usr/bin/env bash | ||
|
||
debconf-set-selections <<< "phpmyadmin phpmyadmin/dbconfig-install boolean true" | ||
debconf-set-selections <<< "phpmyadmin phpmyadmin/app-password-confirm password ${configs[configs][general][mysql_root_pwd]}" | ||
debconf-set-selections <<< "phpmyadmin phpmyadmin/mysql/admin-pass password ${configs[configs][general][mysql_root_pwd]}" | ||
debconf-set-selections <<< "phpmyadmin phpmyadmin/mysql/app-pass password ${configs[configs][general][mysql_root_pwd]}" | ||
debconf-set-selections <<< "phpmyadmin phpmyadmin/app-password-confirm password root" | ||
debconf-set-selections <<< "phpmyadmin phpmyadmin/mysql/admin-pass password root" | ||
debconf-set-selections <<< "phpmyadmin phpmyadmin/mysql/app-pass password root" | ||
debconf-set-selections <<< "phpmyadmin phpmyadmin/reconfigure-webserver multiselect none" | ||
apt-get -y install phpmyadmin 2> /dev/null | ||
apt-get -y install phpmyadmin 2> /dev/null | ||
a2dismod php5 2> /dev/null | ||
service apache2 restart 2> /dev/null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,20 @@ | ||
#!/usr/bin/env bash | ||
|
||
# install redis | ||
apt-get -y install php-xdebug | ||
|
||
echo 'xdebug.remote_enable = on' >> /etc/php/5.6/cli/conf.d/20-xdebug.ini | ||
echo 'xdebug.remote_connect_back = on' >> /etc/php/5.6/cli/conf.d/20-xdebug.ini | ||
echo 'xdebug.idekey = "vagrant"' >> /etc/php/5.6/cli/conf.d/20-xdebug.ini | ||
echo 'xdebug.max_nesting_level = 200' >> /etc/php/5.6/cli/conf.d/20-xdebug.ini | ||
|
||
echo 'xdebug.remote_enable = on' >> /etc/php/7.0/cli/conf.d/20-xdebug.ini | ||
echo 'xdebug.remote_connect_back = on' >> /etc/php/7.0/cli/conf.d/20-xdebug.ini | ||
echo 'xdebug.idekey = "vagrant"' >> /etc/php/7.0/cli/conf.d/20-xdebug.ini | ||
echo 'xdebug.max_nesting_level = 200' >> /etc/php/7.0/cli/conf.d/20-xdebug.ini | ||
|
||
echo 'xdebug.remote_enable = on' >> /etc/php/7.1/cli/conf.d/20-xdebug.ini | ||
echo 'xdebug.remote_connect_back = on' >> /etc/php/7.1/cli/conf.d/20-xdebug.ini | ||
echo 'xdebug.idekey = "vagrant"' >> /etc/php/7.1/cli/conf.d/20-xdebug.ini | ||
echo 'xdebug.max_nesting_level = 200' >> /etc/php/7.1/cli/conf.d/20-xdebug.ini | ||
|
||
service apache2 restart |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters