aboutsummaryrefslogblamecommitdiff
path: root/hosts/carmel/services.nix
blob: 66949509172661bb32886ac896db875c06a2953f (plain) (tree)
1
2
3
4
5
6
7
8
9
                        
                    



                         
                                    
       
 


                            
                                   

       
    
                                                   
 
{ config, pkgs, ... }: {
  services.nginx = {
    streamConfig = ''
      server {
        listen 443;
        proxy_timeout 2s;
        proxy_pass 192.168.6.40:443;
      }

      server {
        listen 80 reuseport;
        proxy_timeout 2s;
        proxy_pass 192.168.6.40:80;
      }
    '';
  };
  networking.firewall.allowedTCPPorts = [ 80 443 ];
}