node upgrade
All checks were successful
Build and Deploy / build (push) Successful in 43s
Build and Deploy / deploy (push) Successful in 25s

This commit is contained in:
Maximilian Baum
2026-04-02 10:44:30 +02:00
parent 1924b1d262
commit c0f81934be
2 changed files with 1 additions and 24 deletions

View File

@@ -1,5 +1,5 @@
# Basis-Image # Basis-Image
FROM node:20 FROM node:24.14
# Arbeitsverzeichnis # Arbeitsverzeichnis
WORKDIR /app WORKDIR /app

View File

@@ -1,23 +0,0 @@
events {}
http {
upstream stupid_apis {
server stupid-apis-1:3000;
server stupid-apis-2:3000;
server stupid-apis-3:3000;
}
server {
listen 80;
location / {
proxy_pass http://stupid_apis;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}
}