32 lines
821 B
YAML
32 lines
821 B
YAML
# Tailscale Ingress for Immich
|
|
# Exposes Immich at photos.tail8d86e.ts.net
|
|
# Caddy will proxy photos.ops.eblu.me to this endpoint
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: immich-tailscale
|
|
namespace: immich
|
|
annotations:
|
|
tailscale.com/funnel: "false"
|
|
hajimari.io/enable: "true"
|
|
hajimari.io/url: "https://photos.ops.eblu.me"
|
|
hajimari.io/icon: "simple-icons:immich"
|
|
hajimari.io/appName: "Immich"
|
|
hajimari.io/group: "Apps"
|
|
hajimari.io/info: "Photo management"
|
|
spec:
|
|
ingressClassName: tailscale
|
|
rules:
|
|
- host: photos
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: immich-server
|
|
port:
|
|
number: 2283
|
|
tls:
|
|
- hosts:
|
|
- photos
|