diff --git a/backend/kustomize/base/database/deployment.yaml b/backend/kustomize/base/database/deployment.yaml
index 56d9591dfd76959d0b1c22c89b5f2e47d298befb..2d41674a2608caa04926d136055e36c947cf4039 100644
--- a/backend/kustomize/base/database/deployment.yaml
+++ b/backend/kustomize/base/database/deployment.yaml
@@ -15,11 +15,8 @@ spec:
               mountPath: /var/lib/postgresql/data
           env:
             - name: POSTGRES_DB
-              value: db_name
             - name: POSTGRES_USER
-              value: db_user
             - name: POSTGRES_PASSWORD
-              value: db_pass
           resources: {}
       volumes:
         - name: pgdata
diff --git a/backend/kustomize/base/webserver/deployment.yaml b/backend/kustomize/base/webserver/deployment.yaml
index 17f438dffe24bcad7ed7095d1282d057f5f6aa06..0ad10fdfdfa8b12e1403934d99a3226011835ec7 100644
--- a/backend/kustomize/base/webserver/deployment.yaml
+++ b/backend/kustomize/base/webserver/deployment.yaml
@@ -18,4 +18,3 @@ spec:
             - name: PORT
               value: "80"
             - name: DATABASE_URL
-              value: postgres://db_user:db_pass@oetzi-database-service/db_name
diff --git a/backend/kustomize/base/webserver/ingress.yaml b/backend/kustomize/base/webserver/ingress.yaml
index 3c85a166d70b0ef31ae3c22bb885f61db0b597ec..ae34e722b0c81caef2ef21be4688724b3a8ecd51 100644
--- a/backend/kustomize/base/webserver/ingress.yaml
+++ b/backend/kustomize/base/webserver/ingress.yaml
@@ -4,10 +4,10 @@ metadata:
   name: ingress
 spec:
   rules:
-    - host: oetzi.eurac
+    - host: PLACEHOLER
       http:
         paths:
-          - path: /
+          - path: PLACEHOLDER
             pathType: Prefix
             backend:
               service: