diff --git a/deployment/digital-ocean/https/templates/ingress.template.yaml b/deployment/digital-ocean/https/templates/ingress.template.yaml index 9d0068e08..a1af35bc7 100644 --- a/deployment/digital-ocean/https/templates/ingress.template.yaml +++ b/deployment/digital-ocean/https/templates/ingress.template.yaml @@ -7,20 +7,21 @@ metadata: 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 + - 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-staging.human-connection.org + http: + paths: + - path: / + backend: + serviceName: nitro-web + servicePort: 3000 # - host: nitro-mailserver.human-connection.org # http: # paths: diff --git a/deployment/legacy-migration/maintenance-worker/migration/mongo/.env b/deployment/legacy-migration/maintenance-worker/migration/mongo/.env index 4c5f9e18c..13c36c143 100644 --- a/deployment/legacy-migration/maintenance-worker/migration/mongo/.env +++ b/deployment/legacy-migration/maintenance-worker/migration/mongo/.env @@ -12,6 +12,6 @@ # On Windows this resolves to C:\Users\dornhoeschen\AppData\Local\Temp\mongo-export (MinGW) EXPORT_PATH='/tmp/mongo-export/' EXPORT_MONGOEXPORT_BIN='mongoexport' -MONGO_EXPORT_SPLIT_SIZE=100 +MONGO_EXPORT_SPLIT_SIZE=4000 # On Windows use something like this # EXPORT_MONGOEXPORT_BIN='C:\Program Files\MongoDB\Server\3.6\bin\mongoexport.exe'