commit
caf57e86b5
|
@ -0,0 +1,2 @@
|
||||||
|
listen ${HTTP_PORT};
|
||||||
|
listen [::]:${HTTP_PORT};
|
|
@ -0,0 +1,2 @@
|
||||||
|
listen ${HTTPS_PORT} ssl http2;
|
||||||
|
listen [::]:${HTTPS_PORT} ssl http2;
|
|
@ -0,0 +1 @@
|
||||||
|
server_name ${MAILCOW_HOSTNAME} autodiscover.* autoconfig.*;
|
|
@ -1,15 +1,13 @@
|
||||||
echo '
|
echo '
|
||||||
server {
|
server {
|
||||||
listen 127.0.0.1:65510;
|
listen 127.0.0.1:65510;
|
||||||
listen '${HTTP_PORT}' default_server;
|
include /etc/nginx/conf.d/listen_plain.active;
|
||||||
listen [::]:'${HTTP_PORT}' default_server;
|
include /etc/nginx/conf.d/listen_ssl.active;
|
||||||
listen '${HTTPS_PORT}' ssl http2 default_server;
|
|
||||||
listen [::]:'${HTTPS_PORT}' ssl http2 default_server;
|
|
||||||
|
|
||||||
ssl_certificate /etc/ssl/mail/cert.pem;
|
ssl_certificate /etc/ssl/mail/cert.pem;
|
||||||
ssl_certificate_key /etc/ssl/mail/key.pem;
|
ssl_certificate_key /etc/ssl/mail/key.pem;
|
||||||
|
|
||||||
server_name '${MAILCOW_HOSTNAME}' autodiscover.* autoconfig.*;
|
include /etc/nginx/conf.d/server_name.active;
|
||||||
|
|
||||||
include /etc/nginx/conf.d/includes/site-defaults.conf;
|
include /etc/nginx/conf.d/includes/site-defaults.conf;
|
||||||
}
|
}
|
||||||
|
@ -18,15 +16,16 @@ for cert_dir in /etc/ssl/mail/*/ ; do
|
||||||
if [[ ! -f ${cert_dir}domains ]] || [[ ! -f ${cert_dir}cert.pem ]] || [[ ! -f ${cert_dir}key.pem ]]; then
|
if [[ ! -f ${cert_dir}domains ]] || [[ ! -f ${cert_dir}cert.pem ]] || [[ ! -f ${cert_dir}key.pem ]]; then
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
# remove hostname to not cause nginx warnings (hostname is covered in default server listen)
|
# do not create vhost for default-certificate. the cert is already in the default server listen
|
||||||
domains="$(cat ${cert_dir}domains | sed -e "s/\(^\| \)\($(echo ${MAILCOW_HOSTNAME} | sed 's/\./\\./g')\)\( \|$\)/ /g" | sed -e 's/^[[:space:]]*//')"
|
domains="$(cat ${cert_dir}domains | sed -e 's/^[[:space:]]*//')"
|
||||||
if [[ "${domains}" == "" ]]; then
|
case "${domains}" in
|
||||||
continue
|
"") continue;;
|
||||||
fi
|
"${MAILCOW_HOSTNAME}"*) continue;;
|
||||||
|
esac
|
||||||
echo -n '
|
echo -n '
|
||||||
server {
|
server {
|
||||||
listen '${HTTPS_PORT}' ssl http2;
|
include /etc/nginx/conf.d/listen_plain.active;
|
||||||
listen [::]:'${HTTPS_PORT}' ssl http2;
|
include /etc/nginx/conf.d/listen_ssl.active;
|
||||||
|
|
||||||
ssl_certificate '${cert_dir}'cert.pem;
|
ssl_certificate '${cert_dir}'cert.pem;
|
||||||
ssl_certificate_key '${cert_dir}'key.pem;
|
ssl_certificate_key '${cert_dir}'key.pem;
|
||||||
|
|
|
@ -275,7 +275,10 @@ services:
|
||||||
image: nginx:mainline-alpine
|
image: nginx:mainline-alpine
|
||||||
dns:
|
dns:
|
||||||
- ${IPV4_NETWORK:-172.22.1}.254
|
- ${IPV4_NETWORK:-172.22.1}.254
|
||||||
command: /bin/sh -c "envsubst < /etc/nginx/conf.d/templates/sogo.template > /etc/nginx/conf.d/sogo.active &&
|
command: /bin/sh -c "envsubst < /etc/nginx/conf.d/templates/listen_plain.template > /etc/nginx/conf.d/listen_plain.active &&
|
||||||
|
envsubst < /etc/nginx/conf.d/templates/listen_ssl.template > /etc/nginx/conf.d/listen_ssl.active &&
|
||||||
|
envsubst < /etc/nginx/conf.d/templates/server_name.template > /etc/nginx/conf.d/server_name.active &&
|
||||||
|
envsubst < /etc/nginx/conf.d/templates/sogo.template > /etc/nginx/conf.d/sogo.active &&
|
||||||
envsubst < /etc/nginx/conf.d/templates/sogo_eas.template > /etc/nginx/conf.d/sogo_eas.active &&
|
envsubst < /etc/nginx/conf.d/templates/sogo_eas.template > /etc/nginx/conf.d/sogo_eas.active &&
|
||||||
. /etc/nginx/conf.d/templates/sogo.auth_request.template.sh > /etc/nginx/conf.d/sogo_proxy_auth.active &&
|
. /etc/nginx/conf.d/templates/sogo.auth_request.template.sh > /etc/nginx/conf.d/sogo_proxy_auth.active &&
|
||||||
. /etc/nginx/conf.d/templates/sites.template.sh > /etc/nginx/conf.d/sites.active &&
|
. /etc/nginx/conf.d/templates/sites.template.sh > /etc/nginx/conf.d/sites.active &&
|
||||||
|
|
Loading…
Reference in New Issue