This commit is contained in:
Roger Oriol
2026-07-04 00:10:23 +02:00
parent 6e689accd0
commit 7faaa53855
3 changed files with 231 additions and 0 deletions

25
searxng/ingress.yaml Normal file
View File

@@ -0,0 +1,25 @@
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: searxng
namespace: searxng
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
spec:
ingressClassName: traefik
tls:
- hosts:
- search.rogi.casa
secretName: searxng-tls
rules:
- host: search.rogi.casa
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: searxng
port:
number: 8080