Files
VPS-scripts_Web-V2/ModulesMenu.list
2020-08-28 11:39:26 +02:00

41 lines
1.1 KiB
Plaintext

##----------------##
# Menu Entries #
##----------------##
if [ $IMODE = n ]; then
#WebServers
webservers=("Nginx:" "Will install NGINX Webserver." ON)
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)
#Options
nginxOptions=("Redis:" "Redis caching" OFF)
##Apache
#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)
#Options
apacheOptions=("Redis:" "Redis caching" OFF)
fi
if [ $IMODE = l ]; then
#WebServers
webservers=("Nginx" "Apache" "Quit")
##Nginx
#CMSList
nginxCMSL=("None" "Wordpress" "Nextcloud")
#Options
nginxOptions=("Redis:")
##Apache
#CMSList
apacheCMSL=("None" "Wordpress" "Nextcloud")
#Options
apacheOptions=("Redis:")
fi