Merge pull request 'raspi-test' (#1) from raspi-test into master

Reviewed-on: #1
This commit is contained in:
Andreas Zweili 2022-03-20 14:37:55 +01:00
commit 5f80e7022c
2 changed files with 92 additions and 0 deletions

View File

@ -0,0 +1,91 @@
{ ... }:
{
networking = {
enableIPv6 = false;
firewall.allowedTCPPorts = [ 80 443 1936 ];
};
services.haproxy = {
enable = true;
config = ''
defaults
log stdout format raw local0 info
option tcplog
timeout connect 5s
timeout client 30s
timeout server 30s
listen haproxy-monitoring
bind *:1936
mode http
stats enable
stats hide-version
stats realm Haproxy\ Statistics
stats uri /
stats auth admin:password
frontend http
bind *:80
mode http
redirect scheme https code 301 if { hdr(host) -i mail.zweili.org ! {ssl_fc }
redirect scheme https code 301 if { hdr(host) -i git.2li.ch } !{ ssl_fc }
redirect scheme https code 301 if { hdr(host) -i heimdall.2li.ch } !{ ssl_fc }
redirect scheme https code 301 if { hdr(host) -i nextcloud.2li.ch } !{ ssl_fc }
redirect scheme https code 301 if { hdr(host) -i photos.zweili.org ! {ssl_fc }
redirect scheme https code 301 if { hdr(host) -i ttrss.2li.ch } !{ ssl_fc }
redirect scheme https code 301 if { hdr(host) -i wallabag.2li.ch } !{ ssl_fc }
redirect scheme https code 301 if { hdr(host) -i webmail.2li.ch } !{ ssl_fc }
redirect scheme https code 301 if { hdr(host) -i rss-bridge.2li.ch } !{ ssl_fc }
redirect scheme https code 301 if { hdr(host) -i www.2li.ch } !{ ssl_fc }
redirect scheme https code 301 if { hdr_dom(host) -i 2li.ch } !{ ssl_fc }
frontend https
# Listen on port 443
bind *:443
mode tcp
tcp-request inspect-delay 5s
tcp-request content accept if { req_ssl_hello_type 1 }
# Figure out which backend (= VM) to use
use_backend git_server if { req_ssl_sni -i git.2li.ch }
use_backend raspi if { req_ssl_sni -i heimdall.2li.ch }
use_backend webmail_server if { req_ssl_sni -i mail.zweili.org }
use_backend nextcloud_server if { req_ssl_sni -i nextcloud.2li.ch }
use_backend nextcloud_server if { req_ssl_sni -i photos.zweili.org }
use_backend ttrss_server if { req_ssl_sni -i ttrss.2li.ch }
use_backend wallabag_server if { req_ssl_sni -i wallabag.2li.ch }
use_backend webmail_server if { req_ssl_sni -i webmail.2li.ch }
use_backend raspi if { req_ssl_sni -i rss-bridge.2li.ch }
use_backend raspi if { req_ssl_sni -i www.2li.ch }
use_backend raspi if { req_ssl_sni -i 2li.ch }
backend grav_server
mode tcp
server server1 10.7.89.102:443 check
backend git_server
mode tcp
server server1 10.7.89.109:443 check
backend heimdall_server
mode tcp
server server1 10.7.89.121:443 check
backend nextcloud_server
mode tcp
server server1 10.7.89.103:443 check
backend ttrss_server
mode tcp
server server1 10.7.89.115:443 check
backend wallabag_server
mode tcp
server server1 10.7.89.118:443 check
backend webmail_server
mode tcp
server server1 10.7.89.123:4430 check
backend rss-bridge_server
mode tcp
server server1 10.7.89.111:443 check
backend raspi
mode tcp
server server1 127.0.0.1:4433 check
'';
};
}

View File

@ -12,5 +12,6 @@
"${inputs.self}/modules/code-server"
"${inputs.self}/modules/docker"
"${inputs.self}/modules/nix-direnv"
"${inputs.self}/modules/raspi-haproxy"
];
}