mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-10-28 10:51:44 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			382 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			382 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
apiVersion: networking.k8s.io/v1
 | 
						|
kind: Ingress
 | 
						|
metadata:
 | 
						|
  name: headscale
 | 
						|
  annotations:
 | 
						|
    kubernetes.io/ingress.class: traefik
 | 
						|
spec:
 | 
						|
  rules:
 | 
						|
    - host: $(PUBLIC_HOSTNAME)
 | 
						|
      http:
 | 
						|
        paths:
 | 
						|
          - backend:
 | 
						|
              service:
 | 
						|
                name: headscale
 | 
						|
                port:
 | 
						|
                  number: 8080
 | 
						|
            path: /
 | 
						|
            pathType: Prefix
 |