mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
- allows the client to send files at least the size we agreed in the vue-dropzone - we don't need such a small split size as we don't run it on the remote server
32 lines
827 B
YAML
32 lines
827 B
YAML
apiVersion: extensions/v1beta1
|
|
kind: Ingress
|
|
metadata:
|
|
name: ingress
|
|
namespace: human-connection
|
|
annotations:
|
|
kubernetes.io/ingress.class: "nginx"
|
|
certmanager.k8s.io/issuer: "letsencrypt-staging"
|
|
certmanager.k8s.io/acme-challenge-type: http01
|
|
nginx.ingress.kubernetes.io/proxy-body-size: 6m
|
|
spec:
|
|
tls:
|
|
- hosts:
|
|
# - nitro-mailserver.human-connection.org
|
|
- nitro-staging.human-connection.org
|
|
secretName: tls
|
|
rules:
|
|
- host: nitro-staging.human-connection.org
|
|
http:
|
|
paths:
|
|
- path: /
|
|
backend:
|
|
serviceName: nitro-web
|
|
servicePort: 3000
|
|
# - host: nitro-mailserver.human-connection.org
|
|
# http:
|
|
# paths:
|
|
# - path: /
|
|
# backend:
|
|
# serviceName: mailserver
|
|
# servicePort: 80
|