Compare commits
3 Commits
c19e5024dc
...
06c9e1e341
Author | SHA1 | Date |
---|---|---|
|
06c9e1e341 | |
|
f8ff80f374 | |
|
85cfdd5a3a |
|
@ -3,8 +3,8 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
|
||||||
HAPROXY_VERSION=2.8.4
|
HAPROXY_VERSION=2.9.0
|
||||||
HAPROXY_URL=https://www.haproxy.org/download/2.8/src/haproxy-${HAPROXY_VERSION}.tar.gz
|
HAPROXY_URL=https://www.haproxy.org/download/2.9/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: gogs
|
git.0rpheus.net: gitea
|
||||||
|
|
||||||
# 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"
|
||||||
|
|
||||||
gogs:
|
gitea:
|
||||||
server_defs:
|
server_defs:
|
||||||
- "gogs-web-1 127.0.0.1:3000 check"
|
- "gitea 127.0.0.1:3000 check"
|
||||||
|
|
|
@ -54,8 +54,10 @@ defaults
|
||||||
|
|
||||||
|
|
||||||
frontend http
|
frontend http
|
||||||
bind *:80,[::]:80 name http
|
bind *:80 name http_v4
|
||||||
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 [::]:80 name http_v6
|
||||||
|
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