60 lines
1.7 KiB
Plaintext
60 lines
1.7 KiB
Plaintext
##----------------##
|
|
# Menu Entries #
|
|
##----------------##
|
|
|
|
if [ $IMODE = n ]; then
|
|
#WebServers
|
|
webservers=("Nginx:" "Will install NGINX Webserver." ON)
|
|
webservers+=("Nginx_nonphp:" "Will install NGINX Webserver without php-fpm." OFF)
|
|
webservers+=("Apache:" "Will install Apache Webserver." OFF)
|
|
|
|
##Nginx
|
|
#CMSList
|
|
nginxCMSL=("None:" "A plain webserver will be setup." OFF)
|
|
nginxCMSL+=("Wordpress:" "WordPress is a content management system based on PHP." OFF)
|
|
nginxCMSL+=("Nextcloud:" "Nextcloud is a suite of client-server software for creating and using file hosting services." OFF)
|
|
nginxCMSL+=("FrontController:" "Will prepair enviroment for frontcontroller." OFF)
|
|
#Options
|
|
nginxOptions=("Redis:" "Redis caching" OFF)
|
|
nginxOptions+=("Postfix:" "Mail MTA" OFF)
|
|
|
|
##Nginx
|
|
#CMSList
|
|
nginx_nonphpCMSL=("None:" "A plain webserver will be setup." OFF)
|
|
#Options
|
|
nginx_nonphpOptions=("Redis:" "Redis caching" OFF)
|
|
nginx_nonphpOptions+=("Postfix:" "Mail MTA" OFF)
|
|
|
|
##Apache
|
|
#CMSList
|
|
apacheCMSL=("None:" "A plain webserver will be setup." OFF)
|
|
apacheCMSL+=("Wordpress:" "WordPress is a content management system based on PHP." OFF)
|
|
apacheCMSL+=("Nextcloud:" "Nextcloud is a suite of client-server software for creating and using file hosting services." OFF)
|
|
#Options
|
|
apacheOptions=("Redis:" "Redis caching" OFF)
|
|
apacheOptions+=("Postfix:" "Mail MTA" OFF)
|
|
|
|
fi
|
|
if [ $IMODE = l ]; then
|
|
#WebServers
|
|
webservers=("Nginx" "Nginx_nonphp" "Apache" "Quit")
|
|
|
|
##Nginx
|
|
#CMSList
|
|
nginxCMSL=("None" "Wordpress" "Nextcloud" "FrontController")
|
|
#Options
|
|
nginxOptions=("Redis:" "Postfix:")
|
|
|
|
##Nginx-nonphp
|
|
#CMSList
|
|
nginx_nonphpCMSL=("None")
|
|
#Options
|
|
nginx_nonphpOptions=("Redis:" "Postfix:")
|
|
|
|
##Apache
|
|
#CMSList
|
|
apacheCMSL=("None" "Wordpress" "Nextcloud")
|
|
#Options
|
|
apacheOptions=("Redis:" "Postfix:")
|
|
|
|
fi |