mirror of
https://github.com/iredmail/iRedMail
synced 2026-06-08 14:51:59 +00:00
cb4197567d
LetsEncrypt cert renewal may fail with error `Connection refused` if the HTTP request is redirected to HTTPS.
71 lines
2.6 KiB
Bash
71 lines
2.6 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Author: Zhang Huangbin (zhb _at_ iredmail.org)
|
|
|
|
#---------------------------------------------------------------------
|
|
# This file is part of iRedMail, which is an open source mail server
|
|
# solution for Red Hat(R) Enterprise Linux, CentOS, Debian and Ubuntu.
|
|
#
|
|
# iRedMail is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# iRedMail is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with iRedMail. If not, see <http://www.gnu.org/licenses/>.
|
|
#---------------------------------------------------------------------
|
|
|
|
web_server_extra()
|
|
{
|
|
# Create robots.txt.
|
|
if [ ! -e ${HTTPD_DOCUMENTROOT}/robots.txt ]; then
|
|
cat >> ${HTTPD_DOCUMENTROOT}/robots.txt <<EOF
|
|
User-agent: *
|
|
Disallow: /
|
|
EOF
|
|
fi
|
|
|
|
# Redirect home page to webmail by default
|
|
if [ ! -e ${HTTPD_DOCUMENTROOT}/index.html ]; then
|
|
if [ X"${USE_ROUNDCUBE}" == X'YES' ]; then
|
|
echo '<html><head><meta HTTP-EQUIV="REFRESH" content="0; url=/mail/"></head></html>' > ${HTTPD_DOCUMENTROOT}/index.html
|
|
elif [ X"${USE_SOGO}" == X'YES' ]; then
|
|
echo '<html><head><meta HTTP-EQUIV="REFRESH" content="0; url=/SOGo/"></head></html>' > ${HTTPD_DOCUMENTROOT}/index.html
|
|
fi
|
|
fi
|
|
|
|
# Add alias for web server daemon user
|
|
add_postfix_alias ${HTTPD_USER} ${SYS_USER_ROOT}
|
|
|
|
echo 'export status_web_server_extra="DONE"' >> ${STATUS_FILE}
|
|
}
|
|
|
|
web_server_config()
|
|
{
|
|
# Create required directories
|
|
[[ -d ${HTTPD_SERVERROOT} ]] || mkdir -p ${HTTPD_SERVERROOT} >> ${INSTALL_LOG} 2>&1
|
|
[[ -d ${HTTPD_DOCUMENTROOT} ]] || mkdir -p ${HTTPD_DOCUMENTROOT} >> ${INSTALL_LOG} 2>&1
|
|
|
|
[[ -d ${HTTPD_WELL_KNOWN_DIR} ]] || mkdir -p ${HTTPD_WELL_KNOWN_DIR} >> ${INSTALL_LOG} 2>&1
|
|
chown ${SYS_USER_ROOT}:${SYS_GROUP_ROOT} ${HTTPD_WELL_KNOWN_DIR}
|
|
chmod 0755 ${HTTPD_WELL_KNOWN_DIR}
|
|
|
|
if [ X"${WEB_SERVER}" == X'NGINX' ]; then
|
|
. ${FUNCTIONS_DIR}/nginx.sh
|
|
check_status_before_run nginx_config
|
|
check_status_before_run web_server_extra
|
|
fi
|
|
|
|
if [ X"${IREDMAIL_USE_PHP}" == X'YES' ]; then
|
|
. ${FUNCTIONS_DIR}/php.sh
|
|
check_status_before_run php_config
|
|
fi
|
|
|
|
echo 'export status_web_server_config="DONE"' >> ${STATUS_FILE}
|
|
}
|