mirror of
https://github.com/iredmail/iRedMail
synced 2026-06-08 14:51:59 +00:00
a1d80afae0
* Merge changes from https://github.com/bozhinov/iRedMail-pub/. Thanks @bozhinov * Correctly set http2 on. * Code cleanup. * Remove http2 in 00-default-ssl.conf. * Code cleanup. * Install perl5.40. Fix incorrect pkg command. * Install uwsgi. * Switch to Latest packages. Code cleanup. * Switch to MySQL instead of MariaDB on FreeBSD. * Fall back to PHP 8.3. Roundcube (1.6.9) doesn't fully work with 8.4 yet. * Install p5-DBD-mysql. * Install correct php module for pgsql backend. * Update netdata v2.2.4. * Fix netdata config files, also switch to Go plugins instead of Python ones for better performance. Update mlmmjadmin 3.3.0. * Install dovecot-mysql for OpenLDAP backend, it supports both ldap and mysql. * Update netdata v2.2.6. * FreeBSD ports tree has been updated to build sope/sogo binary packages with required flavors. * Update netdata v2.3.2. Bump version number: 1.7.3. * Correctly generate pkg repo config file. Correctly enable http2 in nginx. * Update pkg repo file. * Sync netdata configuration. * Switch to PostgreSQL 17. fixes #288 * Fix incorrect version number. * Typo * Switch to pkg quarterly branch. * Fix incorrect bash path. fixes #290 * Fix password algorithm and algorithm prefix on FreeBSD. * Switch to Latest repo. * Install py-multipart for iRedAPD. * Set sendmail_enable=NO.
291 lines
14 KiB
Bash
291 lines
14 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/>.
|
|
#---------------------------------------------------------------------
|
|
|
|
# -------------------------------------------------------
|
|
# ------------------- Nginx -----------------------------
|
|
# -------------------------------------------------------
|
|
|
|
nginx_config()
|
|
{
|
|
ECHO_INFO "Configure Nginx web server."
|
|
|
|
backup_file ${NGINX_CONF} ${NGINX_CONF_SITE_DEFAULT} ${PHP_FPM_POOL_WWW_CONF}
|
|
|
|
# Make sure we have an empty directory
|
|
[ -d ${HTTPD_CONF_DIR_AVAILABLE_CONF} ] && mv ${HTTPD_CONF_DIR_AVAILABLE_CONF} ${HTTPD_CONF_DIR_AVAILABLE_CONF}.bak
|
|
[ ! -d ${HTTPD_CONF_DIR_AVAILABLE_CONF} ] && mkdir -p ${HTTPD_CONF_DIR_AVAILABLE_CONF}
|
|
|
|
[ -d ${HTTPD_CONF_DIR_ENABLED_CONF} ] && mv ${HTTPD_CONF_DIR_ENABLED_CONF} ${HTTPD_CONF_DIR_ENABLED_CONF}.bak
|
|
[ ! -d ${HTTPD_CONF_DIR_ENABLED_CONF} ] && mkdir -p ${HTTPD_CONF_DIR_ENABLED_CONF}
|
|
|
|
# Directory used to store virtual web hosts config files
|
|
[ -d ${HTTPD_CONF_DIR_AVAILABLE_SITES} ] && mv ${HTTPD_CONF_DIR_AVAILABLE_SITES} ${HTTPD_CONF_DIR_AVAILABLE_SITES}.bak
|
|
[ ! -d ${HTTPD_CONF_DIR_AVAILABLE_SITES} ] && mkdir -p ${HTTPD_CONF_DIR_AVAILABLE_SITES}
|
|
|
|
[ -d ${HTTPD_CONF_DIR_ENABLED_SITES} ] && mv ${HTTPD_CONF_DIR_ENABLED_SITES} ${HTTPD_CONF_DIR_ENABLED_SITES}.bak
|
|
[ ! -d ${HTTPD_CONF_DIR_ENABLED_SITES} ] && mkdir -p ${HTTPD_CONF_DIR_ENABLED_SITES}
|
|
|
|
#
|
|
# Modular config files
|
|
#
|
|
# Copy sample files
|
|
cp ${SAMPLE_DIR}/nginx/nginx.conf ${NGINX_CONF}
|
|
cp -f ${SAMPLE_DIR}/nginx/conf-available/*.conf ${HTTPD_CONF_DIR_AVAILABLE_CONF}
|
|
|
|
#
|
|
# Enable modular config files
|
|
#
|
|
_modular_conf='0-general.conf
|
|
cache.conf
|
|
client_max_body_size.conf
|
|
default_type.conf
|
|
gzip.conf
|
|
headers.conf
|
|
log.conf
|
|
mime_types.conf
|
|
sendfile.conf
|
|
server_tokens.conf
|
|
types_hash_max_size.conf'
|
|
|
|
[ X"${IREDMAIL_USE_PHP}" == X'YES' ] && _modular_conf="${_modular_conf} php_fpm.conf"
|
|
|
|
for cf in ${_modular_conf}; do
|
|
ln -s ${HTTPD_CONF_DIR_AVAILABLE_CONF}/${cf} ${HTTPD_CONF_DIR_ENABLED_CONF}/${cf} >> ${INSTALL_LOG} 2>&1
|
|
done
|
|
|
|
#
|
|
# Default sites
|
|
#
|
|
cp -f ${SAMPLE_DIR}/nginx/sites-available/00-default.conf ${NGINX_CONF_SITE_DEFAULT}
|
|
cp -f ${SAMPLE_DIR}/nginx/sites-available/00-default-ssl.conf ${NGINX_CONF_SITE_DEFAULT_SSL}
|
|
ln -s ${NGINX_CONF_SITE_DEFAULT} ${HTTPD_CONF_DIR_ENABLED_SITES} >> ${INSTALL_LOG} 2>&1
|
|
ln -s ${NGINX_CONF_SITE_DEFAULT_SSL} ${HTTPD_CONF_DIR_ENABLED_SITES} >> ${INSTALL_LOG} 2>&1
|
|
|
|
# Template configuration snippets.
|
|
[ ! -d ${NGINX_CONF_TMPL_DIR} ] && mkdir -p ${NGINX_CONF_TMPL_DIR}
|
|
cp ${SAMPLE_DIR}/nginx/templates/*.tmpl ${NGINX_CONF_TMPL_DIR}
|
|
perl -pi -e 's#PH_NGINX_CONF_TMPL_DIR#$ENV{NGINX_CONF_TMPL_DIR}#g' \
|
|
${HTTPD_CONF_DIR_AVAILABLE_SITES}/*.conf \
|
|
${NGINX_CONF_TMPL_DIR}/*tmpl
|
|
|
|
# nginx.conf
|
|
perl -pi -e 's#PH_HTTPD_USER#$ENV{HTTPD_USER}#g' ${NGINX_CONF}
|
|
perl -pi -e 's#PH_NGINX_PID#$ENV{NGINX_PID}#g' ${NGINX_CONF}
|
|
perl -pi -e 's#PH_HTTPD_CONF_DIR_ENABLED_SITES#$ENV{HTTPD_CONF_DIR_ENABLED_SITES}#g' ${NGINX_CONF}
|
|
perl -pi -e 's#PH_HTTPD_CONF_DIR_ENABLED_CONF#$ENV{HTTPD_CONF_DIR_ENABLED_CONF}#g' ${NGINX_CONF}
|
|
|
|
if [[ "${DISTRO}" == 'OpenBSD' ]] || [[ "${DISTRO}" == 'FREEBSD' ]]; then
|
|
perl -pi -e 's/#http2 on;/http2 on;/g' ${NGINX_CONF}
|
|
perl -pi -e 's/ http2;/;/g' ${NGINX_CONF_SITE_DEFAULT_SSL}
|
|
fi
|
|
|
|
#
|
|
# conf-available/*.conf
|
|
#
|
|
perl -pi -e 's#PH_NGINX_LOG_ERRORLOG#$ENV{NGINX_LOG_ERRORLOG}#g' ${HTTPD_CONF_DIR_AVAILABLE_CONF}/log.conf
|
|
perl -pi -e 's#PH_NGINX_LOG_ACCESSLOG#$ENV{NGINX_LOG_ACCESSLOG}#g' ${HTTPD_CONF_DIR_AVAILABLE_CONF}/log.conf
|
|
perl -pi -e 's#PH_NGINX_MIME_TYPES#$ENV{NGINX_MIME_TYPES}#g' ${HTTPD_CONF_DIR_AVAILABLE_CONF}/mime_types.conf
|
|
|
|
perl -pi -e 's#PH_PHP_FPM_BIND_HOST#$ENV{PHP_FPM_BIND_HOST}#g' ${HTTPD_CONF_DIR_AVAILABLE_CONF}/php_fpm.conf
|
|
perl -pi -e 's#PH_PHP_FPM_PORT#$ENV{PHP_FPM_PORT}#g' ${HTTPD_CONF_DIR_AVAILABLE_CONF}/php_fpm.conf
|
|
|
|
# Ports
|
|
perl -pi -e 's#PH_HTTPS_PORT#$ENV{HTTPS_PORT}#g' ${HTTPD_CONF_DIR_AVAILABLE_SITES}/*.conf
|
|
perl -pi -e 's#PH_PORT_HTTP#$ENV{PORT_HTTP}#g' ${HTTPD_CONF_DIR_AVAILABLE_SITES}/*.conf
|
|
perl -pi -e 's#PH_HTTPD_WELL_KNOWN_DIR#$ENV{HTTPD_WELL_KNOWN_DIR}#g' ${HTTPD_CONF_DIR_AVAILABLE_SITES}/*.conf
|
|
|
|
# Enable IPv6.
|
|
if [[ X"${IREDMAIL_HAS_IPV6}" == X'YES' ]]; then
|
|
perl -pi -e 's/#(listen .*::.*)/${1}/g' ${HTTPD_CONF_DIR_AVAILABLE_SITES}/*.conf
|
|
fi
|
|
|
|
#
|
|
# web sites
|
|
#
|
|
perl -pi -e 's#PH_HTTPD_DOCUMENTROOT#$ENV{HTTPD_DOCUMENTROOT}#g' ${HTTPD_CONF_DIR_AVAILABLE_SITES}/*.conf
|
|
|
|
perl -pi -e 's#PH_HTTPD_WELL_KNOWN_DIR#$ENV{HTTPD_WELL_KNOWN_DIR}#g' ${NGINX_CONF_TMPL_DIR}/*.tmpl
|
|
|
|
# ssl
|
|
perl -pi -e 's#PH_SSL_CERT_FILE#$ENV{SSL_CERT_FILE}#g' ${NGINX_CONF_TMPL_DIR}/*.tmpl
|
|
perl -pi -e 's#PH_SSL_KEY_FILE#$ENV{SSL_KEY_FILE}#g' ${NGINX_CONF_TMPL_DIR}/*.tmpl
|
|
perl -pi -e 's#PH_SSL_CIPHERS#$ENV{SSL_CIPHERS}#g' ${NGINX_CONF_TMPL_DIR}/*.tmpl
|
|
perl -pi -e 's#PH_SSL_DH1024_PARAM_FILE#$ENV{SSL_DH1024_PARAM_FILE}#g' ${NGINX_CONF_TMPL_DIR}/*.tmpl
|
|
|
|
# Roundcube
|
|
perl -pi -e 's#PH_RCM_HTTPD_ROOT_SYMBOL_LINK#$ENV{RCM_HTTPD_ROOT_SYMBOL_LINK}#g' ${NGINX_CONF_TMPL_DIR}/*.tmpl
|
|
|
|
# iRedAdmin
|
|
perl -pi -e 's#PH_IREDADMIN_HTTPD_ROOT_SYMBOL_LINK#$ENV{IREDADMIN_HTTPD_ROOT_SYMBOL_LINK}#g' ${NGINX_CONF_TMPL_DIR}/*.tmpl
|
|
perl -pi -e 's#PH_IREDADMIN_BIND_ADDRESS#$ENV{IREDADMIN_BIND_ADDRESS}#g' ${NGINX_CONF_TMPL_DIR}/*.tmpl
|
|
perl -pi -e 's#PH_IREDADMIN_LISTEN_PORT#$ENV{IREDADMIN_LISTEN_PORT}#g' ${NGINX_CONF_TMPL_DIR}/*.tmpl
|
|
|
|
# SOGo
|
|
perl -pi -e 's#PH_SOGO_BIND_ADDRESS#$ENV{SOGO_BIND_ADDRESS}#g' ${NGINX_CONF_TMPL_DIR}/*.tmpl
|
|
perl -pi -e 's#PH_SOGO_BIND_PORT#$ENV{SOGO_BIND_PORT}#g' ${NGINX_CONF_TMPL_DIR}/*.tmpl
|
|
perl -pi -e 's#PH_SOGO_GNUSTEP_DIR#$ENV{SOGO_GNUSTEP_DIR}#g' ${NGINX_CONF_TMPL_DIR}/*.tmpl
|
|
perl -pi -e 's#PH_SOGO_PROXY_TIMEOUT#$ENV{SOGO_PROXY_TIMEOUT}#g' ${NGINX_CONF_TMPL_DIR}/*.tmpl
|
|
|
|
# netdata
|
|
perl -pi -e 's#PH_NETDATA_HTTPD_AUTH_FILE#$ENV{NETDATA_HTTPD_AUTH_FILE}#g' ${NGINX_CONF_TMPL_DIR}/*.tmpl
|
|
perl -pi -e 's#PH_NETDATA_PORT#$ENV{NETDATA_PORT}#g' ${NGINX_CONF_TMPL_DIR}/*.tmpl
|
|
|
|
# Adminer
|
|
perl -pi -e 's#PH_HTTPD_SERVERROOT#$ENV{HTTPD_SERVERROOT}#g' ${NGINX_CONF_TMPL_DIR}/*.tmpl
|
|
|
|
# php-fpm
|
|
if [ X"${IREDMAIL_USE_PHP}" == X'YES' ]; then
|
|
# Update php-fpm config file.
|
|
perl -pi -e 's#^(error_log)( =.*)#$1 = syslog#g' ${PHP_FPM_CONF}
|
|
perl -pi -e 's#;(error_log)( =.*)#$1 = syslog#g' ${PHP_FPM_CONF}
|
|
perl -pi -e 's#^(syslog.facility)( =.*)#$1 = $ENV{IREDMAIL_SYSLOG_FACILITY}#g' ${PHP_FPM_CONF}
|
|
perl -pi -e 's#;(syslog.facility)( =.*)#$1 = $ENV{IREDMAIL_SYSLOG_FACILITY}#g' ${PHP_FPM_CONF}
|
|
perl -pi -e 's#^(syslog.ident)( =.*)#$1 = php-fpm#g' ${PHP_FPM_CONF}
|
|
perl -pi -e 's#;(syslog.ident)( =.*)#$1 = php-fpm#g' ${PHP_FPM_CONF}
|
|
perl -pi -e 's#^(pid)( =.*)#$1 = $ENV{PHP_FPM_PID_FILE}#g' ${PHP_FPM_CONF}
|
|
perl -pi -e 's#;(pid)( =.*)#$1 = $ENV{PHP_FPM_PID_FILE}#g' ${PHP_FPM_CONF}
|
|
|
|
# Create php-fpm conf directory
|
|
mkdir -p ${PHP_FPM_POOL_DIR} >> ${INSTALL_LOG} 2>&1
|
|
cp ${SAMPLE_DIR}/php/fpm/pool.d/www.conf ${PHP_FPM_POOL_WWW_CONF} >> ${INSTALL_LOG} 2>&1
|
|
|
|
perl -pi -e 's#PH_HTTPD_USER#$ENV{HTTPD_USER}#g' ${PHP_FPM_POOL_WWW_CONF}
|
|
perl -pi -e 's#PH_HTTPD_GROUP#$ENV{HTTPD_GROUP}#g' ${PHP_FPM_POOL_WWW_CONF}
|
|
perl -pi -e 's#PH_LOCAL_ADDRESS#$ENV{LOCAL_ADDRESS}#g' ${PHP_FPM_POOL_WWW_CONF}
|
|
perl -pi -e 's#PH_PHP_FPM_PORT#$ENV{PHP_FPM_PORT}#g' ${PHP_FPM_POOL_WWW_CONF}
|
|
perl -pi -e 's#PH_PHP_FPM_POOL_MAX_CHILDREN#$ENV{PHP_FPM_POOL_MAX_CHILDREN}#g' ${PHP_FPM_POOL_WWW_CONF}
|
|
perl -pi -e 's#PH_PHP_FPM_POOL_START_SERVERS#$ENV{PHP_FPM_POOL_START_SERVERS}#g' ${PHP_FPM_POOL_WWW_CONF}
|
|
perl -pi -e 's#PH_PHP_FPM_POOL_MIN_SPARE_SERVERS#$ENV{PHP_FPM_POOL_MIN_SPARE_SERVERS}#g' ${PHP_FPM_POOL_WWW_CONF}
|
|
perl -pi -e 's#PH_PHP_FPM_POOL_MAX_SPARE_SERVERS#$ENV{PHP_FPM_POOL_MAX_SPARE_SERVERS}#g' ${PHP_FPM_POOL_WWW_CONF}
|
|
perl -pi -e 's#PH_PHP_FPM_POOL_MAX_CHILDREN#$ENV{PHP_FPM_POOL_MAX_CHILDREN}#g' ${PHP_FPM_POOL_WWW_CONF}
|
|
perl -pi -e 's#PH_PHP_FPM_URI_STATUS#$ENV{PHP_FPM_URI_STATUS}#g' ${PHP_FPM_POOL_WWW_CONF}
|
|
perl -pi -e 's#PH_PHP_FPM_URI_PING#$ENV{PHP_FPM_URI_PING}#g' ${PHP_FPM_POOL_WWW_CONF}
|
|
perl -pi -e 's#PH_PHP_FPM_POOL_REQUEST_TERMINATE_TIMEOUT#$ENV{PHP_FPM_POOL_REQUEST_TERMINATE_TIMEOUT}#g' ${PHP_FPM_POOL_WWW_CONF}
|
|
perl -pi -e 's#PH_PHP_FPM_REQUEST_SLOWLOG_TIMEOUT#$ENV{PHP_FPM_REQUEST_SLOWLOG_TIMEOUT}#g' ${PHP_FPM_POOL_WWW_CONF}
|
|
|
|
perl -pi -e 's#PH_PHP_FPM_LOG_MAIN#$ENV{PHP_FPM_LOG_MAIN}#g' ${PHP_FPM_POOL_WWW_CONF}
|
|
perl -pi -e 's#PH_PHP_FPM_LOG_SLOW#$ENV{PHP_FPM_LOG_SLOW}#g' ${PHP_FPM_POOL_WWW_CONF}
|
|
|
|
if [[ X"${LOCAL_ADDRESS}" != X'127.0.0.1' ]] && [[ X"${LOCAL_ADDRESS}" != X'localhost' ]]; then
|
|
perl -pi -e 's#^(listen.allowed_clients = 127.0.0.1)$#${1},$ENV{LOCAL_ADDRESS}#g' ${PHP_FPM_POOL_WWW_CONF}
|
|
fi
|
|
|
|
# Create log directory
|
|
mkdir -p ${PHP_FPM_LOG_DIR} >> ${INSTALL_LOG} 2>&1
|
|
touch ${PHP_FPM_LOG_MAIN} ${PHP_FPM_LOG_SLOW}
|
|
chown ${SYS_USER_SYSLOG}:${SYS_GROUP_SYSLOG} ${PHP_FPM_LOG_MAIN} ${PHP_FPM_LOG_SLOW}
|
|
chmod 0640 ${PHP_FPM_LOG_MAIN} ${PHP_FPM_LOG_SLOW}
|
|
|
|
# Create modular syslog config file
|
|
if [[ X"${KERNEL_NAME}" == X'LINUX' ]]; then
|
|
#
|
|
# modular syslog config file
|
|
#
|
|
cp ${SAMPLE_DIR}/rsyslog.d/1-iredmail-phpfpm.conf ${SYSLOG_CONF_DIR}
|
|
|
|
perl -pi -e 's#PH_IREDMAIL_SYSLOG_FACILITY#$ENV{IREDMAIL_SYSLOG_FACILITY}#g' ${SYSLOG_CONF_DIR}/1-iredmail-phpfpm.conf
|
|
perl -pi -e 's#PH_PHP_FPM_LOG_MAIN#$ENV{PHP_FPM_LOG_MAIN}#g' ${SYSLOG_CONF_DIR}/1-iredmail-phpfpm.conf
|
|
|
|
#
|
|
# modular log rotate config file
|
|
#
|
|
cp -f ${SAMPLE_DIR}/logrotate/php-fpm ${PHP_FPM_LOGROTATE_CONF}
|
|
chmod 0644 ${PHP_FPM_LOGROTATE_CONF}
|
|
|
|
perl -pi -e 's#PH_PHP_FPM_LOG_DIR#$ENV{PHP_FPM_LOG_DIR}#g' ${PHP_FPM_LOGROTATE_CONF}
|
|
perl -pi -e 's#PH_PHP_FPM_PID_FILE#$ENV{PHP_FPM_PID_FILE}#g' ${PHP_FPM_LOGROTATE_CONF}
|
|
perl -pi -e 's#PH_SYSLOG_POSTROTATE_CMD#$ENV{SYSLOG_POSTROTATE_CMD}#g' ${PHP_FPM_LOGROTATE_CONF}
|
|
|
|
# Remove unused log file to avoid confusion.
|
|
rm -f /var/log/php*fpm.log 2>/dev/null
|
|
|
|
elif [ X"${KERNEL_NAME}" == X'FREEBSD' ]; then
|
|
#
|
|
# modular syslog config file
|
|
#
|
|
cp -f ${SAMPLE_DIR}/freebsd/syslog.d/php-fpm.conf ${SYSLOG_CONF_DIR} >> ${INSTALL_LOG} 2>&1
|
|
perl -pi -e 's#PH_PHP_FPM_LOG_MAIN#$ENV{PHP_FPM_LOG_MAIN}#g' ${SYSLOG_CONF_DIR}/php-fpm.conf
|
|
|
|
#
|
|
# modular newsyslog (log rotate) config file
|
|
#
|
|
cp -f ${SAMPLE_DIR}/freebsd/newsyslog.conf.d/php-fpm.conf ${PHP_FPM_LOGROTATE_CONF}
|
|
|
|
perl -pi -e 's#PH_PHP_FPM_LOG_MAIN#$ENV{PHP_FPM_LOG_MAIN}#g' ${PHP_FPM_LOGROTATE_CONF}
|
|
perl -pi -e 's#PH_PHP_FPM_LOG_SLOW#$ENV{PHP_FPM_LOG_SLOW}#g' ${PHP_FPM_LOGROTATE_CONF}
|
|
perl -pi -e 's#PH_PHP_FPM_PID_FILE#$ENV{PHP_FPM_PID_FILE}#g' ${PHP_FPM_LOGROTATE_CONF}
|
|
|
|
perl -pi -e 's#PH_SYS_USER_SYSLOG#$ENV{SYS_USER_SYSLOG}#g' ${PHP_FPM_LOGROTATE_CONF}
|
|
perl -pi -e 's#PH_SYS_GROUP_SYSLOG#$ENV{SYS_GROUP_SYSLOG}#g' ${PHP_FPM_LOGROTATE_CONF}
|
|
elif [[ X"${KERNEL_NAME}" == X'OPENBSD' ]]; then
|
|
if ! grep "${PHP_FPM_LOG_MAIN}" ${SYSLOG_CONF} &>/dev/null; then
|
|
# '!!' means abort further evaluation after first match
|
|
echo '!!php-fpm' >> ${SYSLOG_CONF}
|
|
echo "${IREDMAIL_SYSLOG_FACILITY}.* ${PHP_FPM_LOG_MAIN}" >> ${SYSLOG_CONF}
|
|
fi
|
|
|
|
# Remove unused log file to avoid confusion.
|
|
rm -f /var/log/php-fpm.log &>/dev/null
|
|
|
|
if ! grep "${PHP_FPM_LOG_MAIN}" /etc/newsyslog.conf &>/dev/null; then
|
|
cat >> /etc/newsyslog.conf <<EOF
|
|
${PHP_FPM_LOG_MAIN} ${HTTPD_USER}:${HTTPD_GROUP} 600 7 * 24 Z ${PHP_FPM_PID_FILE}
|
|
EOF
|
|
fi
|
|
|
|
if ! grep "${PHP_FPM_LOG_SLOW}" /etc/newsyslog.conf &>/dev/null; then
|
|
cat >> /etc/newsyslog.conf <<EOF
|
|
${PHP_FPM_LOG_SLOW} ${HTTPD_USER}:${HTTPD_GROUP} 600 7 * 24 Z ${PHP_FPM_PID_FILE}
|
|
EOF
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
if [ X"${DISTRO}" == X'FREEBSD' ]; then
|
|
mkdir -p /var/log/nginx >> ${INSTALL_LOG} 2>&1
|
|
service_control enable 'nginx_enable' 'YES'
|
|
service_control enable 'php_fpm_enable' 'YES'
|
|
elif [ X"${DISTRO}" == X'OPENBSD' ]; then
|
|
# Enable unchrooted Nginx
|
|
echo 'nginx_flags="-u"' >> ${RC_CONF_LOCAL}
|
|
fi
|
|
|
|
cat >> ${TIP_FILE} <<EOF
|
|
Nginx:
|
|
* Configuration files:
|
|
- ${NGINX_CONF}
|
|
- ${NGINX_CONF_SITE_DEFAULT}
|
|
- ${NGINX_CONF_SITE_DEFAULT_SSL}
|
|
* Directories:
|
|
- ${HTTPD_CONF_ROOT}
|
|
- ${HTTPD_DOCUMENTROOT}
|
|
* See also:
|
|
- ${HTTPD_DOCUMENTROOT}/index.html
|
|
|
|
php-fpm:
|
|
* Configuration files: ${PHP_FPM_POOL_WWW_CONF}
|
|
|
|
EOF
|
|
|
|
echo 'export status_nginx_config="DONE"' >> ${STATUS_FILE}
|
|
}
|