websites: Host darkchestofwonders.us in k8s
The *darkchestofwonders.us* website is a legacy Python/mod_wsgi application. It was down for a while after updating the main web server to Fedora 38. Although we don't upload as many screenshots anymore, we do still enjoy looking at the old ones. Until I get a chance to either update the site to use a more modern deplyoment mechansim, or move the screenshots to some other photo hosting system, the easiest way to keep it online is to run it in a container.
This commit is contained in:
25
websites/darkchestofwonders.us/ingress.yaml
Normal file
25
websites/darkchestofwonders.us/ingress.yaml
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: darkchestofwonders.us
|
||||
labels:
|
||||
app.kubernetes.io/name: darkchestofwonders.us
|
||||
app.kubernetes.io/component: darkchestofwonders.us
|
||||
app.kubernetes.io/part-of: darkchestofwonders.us
|
||||
annotations:
|
||||
nginx.ingress.kubernetes.io/ssl-redirect: "false"
|
||||
nginx.ingress.kubernetes.io/proxy-body-size: 100m
|
||||
spec:
|
||||
ingressClassName: nginx
|
||||
rules:
|
||||
- host: darkchestofwonders.us
|
||||
http:
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: darkchestofwonders
|
||||
port:
|
||||
name: http
|
||||
Reference in New Issue
Block a user