Compare commits
No commits in common. "06c9e1e341f80c40333ca5014baa8aaa24d8f659" and "c19e5024dc137e71ae7bbd1feecdfe25a9a9b990" have entirely different histories.
06c9e1e341
...
c19e5024dc
|
@ -3,8 +3,8 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
|
||||||
HAPROXY_VERSION=2.9.0
|
HAPROXY_VERSION=2.8.4
|
||||||
HAPROXY_URL=https://www.haproxy.org/download/2.9/src/haproxy-${HAPROXY_VERSION}.tar.gz
|
HAPROXY_URL=https://www.haproxy.org/download/2.8/src/haproxy-${HAPROXY_VERSION}.tar.gz
|
||||||
HAPROXY_SHA256_URL=${HAPROXY_URL}.sha256
|
HAPROXY_SHA256_URL=${HAPROXY_URL}.sha256
|
||||||
HAPROXY_SRC=/tmp/haproxy
|
HAPROXY_SRC=/tmp/haproxy
|
||||||
|
|
||||||
|
|
|
@ -46,7 +46,7 @@ all:
|
||||||
tt-rss.0rpheus.net: ttrss
|
tt-rss.0rpheus.net: ttrss
|
||||||
mail.0rpheus.net: roundcube
|
mail.0rpheus.net: roundcube
|
||||||
blog.0rpheus.net: apache
|
blog.0rpheus.net: apache
|
||||||
git.0rpheus.net: gitea
|
git.0rpheus.net: gogs
|
||||||
|
|
||||||
# haproxy backends
|
# haproxy backends
|
||||||
haproxy_backends:
|
haproxy_backends:
|
||||||
|
@ -82,6 +82,6 @@ all:
|
||||||
server_defs:
|
server_defs:
|
||||||
- "mail-docker 127.0.0.1:2080 check"
|
- "mail-docker 127.0.0.1:2080 check"
|
||||||
|
|
||||||
gitea:
|
gogs:
|
||||||
server_defs:
|
server_defs:
|
||||||
- "gitea 127.0.0.1:3000 check"
|
- "gogs-web-1 127.0.0.1:3000 check"
|
||||||
|
|
|
@ -54,10 +54,8 @@ defaults
|
||||||
|
|
||||||
|
|
||||||
frontend http
|
frontend http
|
||||||
bind *:80 name http_v4
|
bind *:80,[::]:80 name http
|
||||||
bind [::]:80 name http_v6
|
bind *:443,[::]:443 name https ssl crt /etc/haproxy/certs/mail.0rpheus.net.pem crt /etc/haproxy/certs/ ecdhe secp384r1 alpn h2,http/1.1
|
||||||
bind *:443 name https_v4 ssl crt /etc/haproxy/certs/mail.0rpheus.net.pem crt /etc/haproxy/certs/ ecdhe secp384r1 alpn h2,http/1.1
|
|
||||||
bind [::]:443 name https_v6 ssl crt /etc/haproxy/certs/mail.0rpheus.net.pem crt /etc/haproxy/certs/ ecdhe secp384r1 alpn h2,http/1.1
|
|
||||||
|
|
||||||
compression algo gzip
|
compression algo gzip
|
||||||
compression type text/html text/plain text/javascript application/javascript application/xml text/css
|
compression type text/html text/plain text/javascript application/javascript application/xml text/css
|
||||||
|
|
Loading…
Reference in New Issue