fix: correct nginx proxy port to Vaultwarden's port 80

This commit is contained in:
2026-04-02 15:25:56 +08:00
parent 4b7a1f2bcf
commit 11af6bf3f2
2 changed files with 4 additions and 4 deletions

View File

@@ -25,7 +25,7 @@ spec:
memory: "512Mi"
cpu: "500m"
ports:
- containerPort: 3000
- containerPort: 80
env:
- name: WEBSOCKET_ENABLED
value: "true"
@@ -40,7 +40,7 @@ spec:
livenessProbe:
httpGet:
path: /alive
port: 3000
port: 80
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 5
@@ -48,7 +48,7 @@ spec:
readinessProbe:
httpGet:
path: /alive
port: 3000
port: 80
initialDelaySeconds: 5
periodSeconds: 10
timeoutSeconds: 5