fixed final message
This commit is contained in:
parent
137c782182
commit
fc0ba2b0de
1 changed files with 4 additions and 4 deletions
|
@ -192,14 +192,14 @@ function create_webserver_config () {
|
||||||
function final_message () {
|
function final_message () {
|
||||||
echo -e "####################################################################################"
|
echo -e "####################################################################################"
|
||||||
echo -e "\nAdd your FQDN to servername directive in ${WEBSERVER_CONF}"
|
echo -e "\nAdd your FQDN to servername directive in ${WEBSERVER_CONF}"
|
||||||
echo -e "and restart your webserver if you're not testing localy"
|
echo -e "and restart your webserver if you're not testing locally"
|
||||||
echo -e "or open http://localhost in your browser to start using Zammad.\n"
|
echo -e "or open http://localhost/ in your browser to start using Zammad.\n"
|
||||||
if [ "${OS}" == "REDHAT" ]; then
|
if [ "${OS}" == "REDHAT" ]; then
|
||||||
echo -e "\n Remember to enable selinux and firewall rules!\n"
|
echo -e "\n Remember to enable selinux and firewall rules!\n"
|
||||||
echo -e "Use the follwing commands:"
|
echo -e "Use the follwing commands:"
|
||||||
echo -e " setsebool httpd_can_network_connect on -P"
|
echo -e " setsebool httpd_can_network_connect on -P"
|
||||||
echo -e " firewall-cmd --zone=public --add-port=80/tcp --permanent"
|
echo -e " firewall-cmd --zone=public --add-service=http --permanent"
|
||||||
echo -e " firewall-cmd --zone=public --add-port=443/tcp --permanent"
|
echo -e " firewall-cmd --zone=public --add-service=https --permanent"
|
||||||
echo -e " firewall-cmd --reload\n"
|
echo -e " firewall-cmd --reload\n"
|
||||||
fi
|
fi
|
||||||
echo -e "####################################################################################"
|
echo -e "####################################################################################"
|
||||||
|
|
Loading…
Reference in a new issue