Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

reverse proxy victoriatraces

+16
+2
host-specific/misaki/coredns/ngp.computer.hosts
··· 6 6 192.168.1.3 id.ngp.computer 7 7 192.168.1.3 coder.ngp.computer 8 8 192.168.1.3 stats.ngp.computer 9 + 192.168.1.3 traces.ngp.computer 9 10 192.168.1.6 odin.ngp.computer 10 11 11 12 fe80::9ab7:85ff:fe1e:dfe8 img.ngp.computer ··· 16 17 fe80::9ab7:85ff:fe1e:dfe8 id.ngp.computer 17 18 fe80::9ab7:85ff:fe1e:dfe8 coder.ngp.computer 18 19 fe80::9ab7:85ff:fe1e:dfe8 stats.ngp.computer 20 + fe80::9ab7:85ff:fe1e:dfe8 traces.ngp.computer 19 21 fe80::3af7:cdff:fec7:54f odin.ngp.computer
+14
host-specific/misaki/services.nix
··· 816 816 http2 = true; 817 817 locations."/".proxyPass = "http://localhost:8086/"; 818 818 }; 819 + virtualHosts."traces.ngp.computer" = { 820 + http2 = true; 821 + locations."/" = { 822 + proxyPass = "http://localhost:10428/"; 823 + extraConfig = '' 824 + allow 192.168.0.0/16; 825 + allow 10.0.0.0/8; 826 + allow 172.16.0.0/12; 827 + allow 127.0.0.1; 828 + allow ::1; 829 + deny all; 830 + ''; 831 + }; 832 + }; 819 833 820 834 # give a name to the virtual host. It also becomes the server name. 821 835 virtualHosts."plex.packetlost.dev" = {