#!/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 servers and PHP
export HTTPD_PORT='80'
export HTTPS_PORT='443'

if [ X"${DISTRO}" == X'RHEL' ]; then
    # Web data.
    export HTTPD_SERVERROOT='/var/www'
    export HTTPD_DOCUMENTROOT="${HTTPD_SERVERROOT}/html"

elif [ X"${DISTRO}" == X'DEBIAN' -o X"${DISTRO}" == X'UBUNTU' ]; then
    # Web data.
    export HTTPD_SERVERROOT='/opt/www'
    export HTTPD_DOCUMENTROOT="/var/www"

    # Daemon user.
    export HTTPD_USER='www-data'
    export HTTPD_GROUP='www-data'

elif [ X"${DISTRO}" == X'FREEBSD' ]; then
    # Daemon user.
    export HTTPD_USER='www'
    export HTTPD_GROUP='www'

    # Web data.
    export HTTPD_SERVERROOT='/usr/local/www'
    # TODO choose a proper document root
    export HTTPD_DOCUMENTROOT="${HTTPD_SERVERROOT}/apache24/data"

elif [ X"${DISTRO}" == X'OPENBSD' ]; then
    # Daemon user.
    export HTTPD_USER='www'
    export HTTPD_GROUP='www'

    # Web data.
    export HTTPD_SERVERROOT='/var/www'
    export HTTPD_DOCUMENTROOT="${HTTPD_SERVERROOT}/htdocs"

fi

[ X"${WEB_SERVER_IS_APACHE}" == X'YES' ] && . ${CONF_DIR}/apache
[ X"${WEB_SERVER_IS_NGINX}" == X'YES' ] && . ${CONF_DIR}/nginx

. ${CONF_DIR}/php
