modularise configuration files

This commit is contained in:
Ray Elliott 2020-09-03 12:46:30 +01:00
parent edec4803b0
commit d56f9d16f1
24 changed files with 143 additions and 0 deletions

View File

@ -0,0 +1,4 @@
## apache configuration
#
## uncomment if using apache
#apache2_version='latest'

View File

@ -0,0 +1,13 @@
## litespeed configuration
## uncomment if using litespeed
## specify specific version from latest, 54, 55, 56, 70, 71, 72, 73 or 74
#export litespeed_version='latest'
## php version
#export ls_lsphp_version='73'
## https://openlitespeed.org/kb/1-click-install/
## password used to log into litespeed web interface
#export ls_webadmin_pass='admin'

View File

@ -0,0 +1,4 @@
## export if using local development environment
#export domain='test123.home'
#export url='http://test123.home'

View File

@ -0,0 +1,3 @@
## uncomment if using mariadb
#mariadb_version='latest'

View File

@ -0,0 +1,2 @@
## uncomment if using mysql
#mysql_version='latest'

View File

@ -0,0 +1,5 @@
## nginx configuration
## uncomment if using nginx
#nginx_version='latest'

5
install/config/local/php Normal file
View File

@ -0,0 +1,5 @@
## php configuration
#
## uncomment if using php
#php_version='latest'

5
install/config/local/ssh Normal file
View File

@ -0,0 +1,5 @@
## ssh configuration
## uncomment if connecting via ssh
#export ssh='root@test123.home'

View File

@ -0,0 +1,6 @@
## user configuration
## uncomment to set user
## webuser/webgroup
#export webuser='ray'
#export webgroup='ray'

24
install/config/local/wp Normal file
View File

@ -0,0 +1,24 @@
## wordpress configuration - uncomment if using wordpress
# export wp_user='admin'
# export wp_pass='admin'
## leave commented if using default
# export wp_path='/var/www/html/wordpress'
# export db_root_pass='root'
# export wp_db_name='wordpress'
# export wp_db_user='wordpress'
# export wp_db_pass='wordpress'
## list of themes to install - first one will be activate
# export wp_themes="twentytwenty"
## list of plugins to install
# export wp_plugins=""
## list of plugins to activate
# export wp_plugins_active="block-lab"
## list of plugins to uninstall
# export wp_plugins_uninstall="hello aksimet"

View File

@ -0,0 +1,4 @@
## apache configuration
## uncomment if using apache
#apache2_version='latest'

View File

@ -0,0 +1,13 @@
## litespeed configuration
## uncomment if using litespeed
## specify specific version from latest, 54, 55, 56, 70, 71, 72, 73 or 74
#export litespeed_version='latest'
## php version
#export ls_lsphp_version='73'
## https://openlitespeed.org/kb/1-click-install/
## password used to log into litespeed web interface
#export ls_webadmin_pass='x7__+85676--Dd'

View File

@ -0,0 +1,4 @@
## export if using local development environment
#export domain='test123.example.com'
#export url='http://test123.example.com'

View File

@ -0,0 +1,3 @@
## uncomment if using mariadb
#mariadb_version='latest'

View File

@ -0,0 +1,2 @@
## uncomment if using mysql
#mysql_version='latest'

View File

@ -0,0 +1,5 @@
## nginx configuration
## uncomment if using nginx
#nginx_version='latest'

View File

@ -0,0 +1,5 @@
## php configuration
#
## uncomment if using php
#php_version='latest'

View File

@ -0,0 +1,5 @@
## ssh configuration
## uncomment if connecting via ssh
#export ssh='root@test123.example.com'

View File

@ -0,0 +1,7 @@
## user configuration
## uncomment to set user
## webuser/webgroup
## leave commented for default
#export webuser='www-data'
#export webgroup='www-data'

24
install/config/remote/wp Normal file
View File

@ -0,0 +1,24 @@
## wordpress configuration - uncomment if using wordpress
# export wp_user='admin'
# export wp_pass=''
## leave commented if using default
# export wp_path='/var/www/html/wordpress'
# export db_root_pass='9dn,s93j_UU9--s889d8dUY'
# export wp_db_name='wordpress'
# export wp_db_user='wordpress'
# export wp_db_pass='__d39fhi3nkjdflk8-ddWEs'
## list of themes to install - first one will be activate
# export wp_themes="twentytwenty"
## list of plugins to install
# export wp_plugins=""
## list of plugins to activate
# export wp_plugins_active=""
## list of plugins to uninstall
# export wp_plugins_uninstall="hello aksimet"

0
install/export-to-remote.sh Executable file
View File

0
install/import-from-remote.sh Executable file
View File

0
install/install-local.sh Executable file
View File

0
install/install-remote.sh Executable file
View File