stonith404 / pingvin-share

A self-hosted file sharing platform that combines lightness and beauty, perfect for seamless and efficient file sharing.
https://stonith404.github.io/pingvin-share/
BSD 2-Clause "Simplified" License
3.21k stars 232 forks source link

🐛 Bug Report: ENV Ports break system #641

Open bauermarkus opened 2 days ago

bauermarkus commented 2 days ago

👟 Reproduction steps

After updating to the new version with the new ENV variables, the system breaks with Internal Server Error

https://github.com/stonith404/pingvin-share/issues/397

Docker Compose

services:
  pingvin-share:
    image: stonith404/pingvin-share
    container_name: pingvin
    restart: unless-stopped
    networks:
      - nginx-public
    environment:
      - BACKEND_PORT=3030
      - PORT=3333
      - TRUST_PROXY=true # Set to true if a reverse proxy is in front of the co>
    volumes:
      - "./data:/opt/app/backend/data"
      - "./data/images:/opt/app/frontend/public/img"

networks:
  nginx-public:
    external: true

Settings NGINX-Proxy-Manager image

👍 Expected behavior

Backend reachable by 3030, Frontend by 3333

👎 Actual Behavior

Internal Server Error

📜 Logs

No response

stonith404 commented 1 day ago

Can you share the backend logs?

You probably have to set the API_URL variable to http://localhost:3030.

bauermarkus commented 1 day ago

Here are the logs from a fresh restarted intance

Environment variables loaded from prisma/.env

Prisma schema loaded from prisma/schema.prisma

Datasource "db": SQLite database "pingvin-share.db" at "file:../data/pingvin-share.db"

22 migrations found in prisma/migrations

No pending migrations to apply.

Environment variables loaded from prisma/.env

Running seed command `ts-node prisma/seed/config.seed.ts` ...

🌱  The seed command has been executed.

┌─────────────────────────────────────────────────────────┐

│  Update available 5.19.1 -> 5.21.0                      │

│  Run the following to update                            │

│    npm i --save-dev prisma@latest                       │

│    npm i @prisma/client@latest                          │

└─────────────────────────────────────────────────────────┘

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG Showing log, warn, error, fatal messages

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [NestFactory] Starting Nest application... +3ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [InstanceLoader] PrismaModule dependencies initialized +45ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [InstanceLoader] JwtModule dependencies initialized +3ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [InstanceLoader] JwtModule dependencies initialized +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [InstanceLoader] ThrottlerModule dependencies initialized +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [InstanceLoader] DiscoveryModule dependencies initialized +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [InstanceLoader] CacheModule dependencies initialized +1ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [InstanceLoader] ScheduleModule dependencies initialized +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [InstanceLoader] AppModule dependencies initialized +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [PrismaService] Connected to the database

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [InstanceLoader] EmailModule dependencies initialized +7ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [InstanceLoader] ClamScanModule dependencies initialized +2ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [InstanceLoader] JobsModule dependencies initialized +2ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [InstanceLoader] ConfigModule dependencies initialized +1ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [InstanceLoader] ReverseShareModule dependencies initialized +2ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [InstanceLoader] FileModule dependencies initialized +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [InstanceLoader] UserModule dependencies initialized +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [InstanceLoader] OAuthModule dependencies initialized +1ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [InstanceLoader] AuthModule dependencies initialized +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [InstanceLoader] ShareModule dependencies initialized +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RoutesResolver] AppController {/api}: +8ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/health, GET} route +3ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RoutesResolver] AuthController {/api/auth}: +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/auth/signUp, POST} route +1ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/auth/signIn, POST} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/auth/signIn/totp, POST} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/auth/resetPassword/:email, POST} route +1ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/auth/resetPassword, POST} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/auth/password, PATCH} route +1ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/auth/token, POST} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/auth/signOut, POST} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/auth/totp/enable, POST} route +1ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/auth/totp/verify, POST} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/auth/totp/disable, POST} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RoutesResolver] OAuthController {/api/oauth}: +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/oauth/available, GET} route +1ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/oauth/status, GET} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/oauth/auth/:provider, GET} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/oauth/callback/:provider, GET} route +1ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/oauth/unlink/:provider, POST} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RoutesResolver] UserController {/api/users}: +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/users/me, GET} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/users/me, PATCH} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/users/me, DELETE} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/users, GET} route +1ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/users, POST} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/users/:id, PATCH} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/users/:id, DELETE} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RoutesResolver] FileController {/api/shares/:shareId/files}: +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/shares/:shareId/files, POST} route +1ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/shares/:shareId/files/zip, GET} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/shares/:shareId/files/:fileId, GET} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/shares/:shareId/files/:fileId, DELETE} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RoutesResolver] ReverseShareController {/api/reverseShares}: +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/reverseShares, POST} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/reverseShares/:reverseShareToken, GET} route +1ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/reverseShares, GET} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/reverseShares/:reverseShareId, DELETE} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RoutesResolver] ShareController {/api/shares}: +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/shares/all, GET} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/shares, GET} route +1ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/shares/:id, GET} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/shares/:id/from-owner, GET} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/shares/:id/metaData, GET} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/shares, POST} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/shares/:id/complete, POST} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/shares/:id/complete, DELETE} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/shares/:id, DELETE} route +1ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/shares/isShareIdAvailable/:id, GET} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/shares/:id/token, POST} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RoutesResolver] ConfigController {/api/configs}: +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/configs, GET} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/configs/admin/:category, GET} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/configs/admin, PATCH} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/configs/admin/testEmail, POST} route +1ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [RouterExplorer] Mapped {/api/configs/admin/logo, POST} route +0ms

[Nest] 50  - 10/15/2024, 3:16:10 PM     LOG [NestApplication] Nest application successfully started +20ms

[Nest] 50  - 10/15/2024, 3:16:15 PM     LOG [ClamScanService] ClamAV is not active

ERR ts=1729005375.8279428 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"60700","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000622938 status=502 err_id=07uukqwna err_trace=reverseproxy.statusError (reverseproxy.go:1267)

ERR ts=1729005385.8829858 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"34458","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000740593 status=502 err_id=3q32x1dfy err_trace=reverseproxy.statusError (reverseproxy.go:1267)

ERR ts=1729005395.9373448 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"46434","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000498852 status=502 err_id=qf4yu5rph err_trace=reverseproxy.statusError (reverseproxy.go:1267)
stonith404 commented 1 day ago

Did you set the API_URL env variable and run docker compose up -d?

bauermarkus commented 1 day ago

As you see my docker-compose, no

I did not see that anywhere in the documentation

So I should set the API_URL to the backend?

stonith404 commented 1 day ago

You probably have to set the API_URL variable to http://localhost:3030.

Yes, because when you change the port of the backend the API_URL isn't http://localhost:8080 anymore. I'll add this note to the docs.

bauermarkus commented 1 day ago

I have the feeling the option is not working

Current docker compose file:


services:
  pingvin-share:
    image: stonith404/pingvin-share
    container_name: pingvin
    restart: unless-stopped
    networks:
      - nginx-public
    environment:
      - API_URL=http://localhost:3030
      - BACKEND_PORT=3030
      - PORT=3333
      - TRUST_PROXY=true # Set to true if a reverse proxy is in front of the co>
    volumes:
      - "./data:/opt/app/backend/data"
      - "./data/images:/opt/app/frontend/public/img"

networks:
  nginx-public:
    external: true

Current log:

Environment variables loaded from prisma/.env

Prisma schema loaded from prisma/schema.prisma

Datasource "db": SQLite database "pingvin-share.db" at "file:../data/pingvin-share.db"

22 migrations found in prisma/migrations

No pending migrations to apply.

Environment variables loaded from prisma/.env

Running seed command `ts-node prisma/seed/config.seed.ts` ...

🌱  The seed command has been executed.

┌─────────────────────────────────────────────────────────┐

│  Update available 5.19.1 -> 5.21.0                      │

│  Run the following to update                            │

│    npm i --save-dev prisma@latest                       │

│    npm i @prisma/client@latest                          │

└─────────────────────────────────────────────────────────┘

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG Showing log, warn, error, fatal messages

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [NestFactory] Starting Nest application... +3ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [InstanceLoader] PrismaModule dependencies initialized +57ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [InstanceLoader] JwtModule dependencies initialized +3ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [InstanceLoader] JwtModule dependencies initialized +0ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [InstanceLoader] ThrottlerModule dependencies initialized +0ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [InstanceLoader] DiscoveryModule dependencies initialized +0ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [InstanceLoader] CacheModule dependencies initialized +1ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [InstanceLoader] ScheduleModule dependencies initialized +0ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [InstanceLoader] AppModule dependencies initialized +0ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [PrismaService] Connected to the database

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [InstanceLoader] EmailModule dependencies initialized +7ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [InstanceLoader] ClamScanModule dependencies initialized +2ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [InstanceLoader] JobsModule dependencies initialized +1ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [InstanceLoader] ConfigModule dependencies initialized +0ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [InstanceLoader] ReverseShareModule dependencies initialized +3ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [InstanceLoader] FileModule dependencies initialized +0ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [InstanceLoader] UserModule dependencies initialized +0ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [InstanceLoader] OAuthModule dependencies initialized +1ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [InstanceLoader] AuthModule dependencies initialized +0ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [InstanceLoader] ShareModule dependencies initialized +0ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RoutesResolver] AppController {/api}: +15ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RouterExplorer] Mapped {/api/health, GET} route +3ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RoutesResolver] AuthController {/api/auth}: +0ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RouterExplorer] Mapped {/api/auth/signUp, POST} route +1ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RouterExplorer] Mapped {/api/auth/signIn, POST} route +0ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RouterExplorer] Mapped {/api/auth/signIn/totp, POST} route +1ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RouterExplorer] Mapped {/api/auth/resetPassword/:email, POST} route +0ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RouterExplorer] Mapped {/api/auth/resetPassword, POST} route +1ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RouterExplorer] Mapped {/api/auth/password, PATCH} route +0ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RouterExplorer] Mapped {/api/auth/token, POST} route +0ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RouterExplorer] Mapped {/api/auth/signOut, POST} route +1ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RouterExplorer] Mapped {/api/auth/totp/enable, POST} route +0ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RouterExplorer] Mapped {/api/auth/totp/verify, POST} route +1ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RouterExplorer] Mapped {/api/auth/totp/disable, POST} route +0ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RoutesResolver] OAuthController {/api/oauth}: +0ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RouterExplorer] Mapped {/api/oauth/available, GET} route +0ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RouterExplorer] Mapped {/api/oauth/status, GET} route +1ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RouterExplorer] Mapped {/api/oauth/auth/:provider, GET} route +1ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RouterExplorer] Mapped {/api/oauth/callback/:provider, GET} route +0ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RouterExplorer] Mapped {/api/oauth/unlink/:provider, POST} route +0ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RoutesResolver] UserController {/api/users}: +0ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RouterExplorer] Mapped {/api/users/me, GET} route +1ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RouterExplorer] Mapped {/api/users/me, PATCH} route +0ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RouterExplorer] Mapped {/api/users/me, DELETE} route +0ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RouterExplorer] Mapped {/api/users, GET} route +0ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RouterExplorer] Mapped {/api/users, POST} route +1ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RouterExplorer] Mapped {/api/users/:id, PATCH} route +0ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RouterExplorer] Mapped {/api/users/:id, DELETE} route +0ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RoutesResolver] FileController {/api/shares/:shareId/files}: +0ms

[Nest] 48  - 10/16/2024, 10:43:10 AM     LOG [RouterExplorer] Mapped {/api/shares/:shareId/files, POST} route +0ms

[Nest] 48  - 10/16/2024, 10:43:11 AM     LOG [RouterExplorer] Mapped {/api/shares/:shareId/files/zip, GET} route +1ms

[Nest] 48  - 10/16/2024, 10:43:11 AM     LOG [RouterExplorer] Mapped {/api/shares/:shareId/files/:fileId, GET} route +0ms

[Nest] 48  - 10/16/2024, 10:43:11 AM     LOG [RouterExplorer] Mapped {/api/shares/:shareId/files/:fileId, DELETE} route +0ms

[Nest] 48  - 10/16/2024, 10:43:11 AM     LOG [RoutesResolver] ReverseShareController {/api/reverseShares}: +0ms

[Nest] 48  - 10/16/2024, 10:43:11 AM     LOG [RouterExplorer] Mapped {/api/reverseShares, POST} route +1ms

[Nest] 48  - 10/16/2024, 10:43:11 AM     LOG [RouterExplorer] Mapped {/api/reverseShares/:reverseShareToken, GET} route +0ms

[Nest] 48  - 10/16/2024, 10:43:11 AM     LOG [RouterExplorer] Mapped {/api/reverseShares, GET} route +0ms

[Nest] 48  - 10/16/2024, 10:43:11 AM     LOG [RouterExplorer] Mapped {/api/reverseShares/:reverseShareId, DELETE} route +0ms

[Nest] 48  - 10/16/2024, 10:43:11 AM     LOG [RoutesResolver] ShareController {/api/shares}: +0ms

[Nest] 48  - 10/16/2024, 10:43:11 AM     LOG [RouterExplorer] Mapped {/api/shares/all, GET} route +1ms

[Nest] 48  - 10/16/2024, 10:43:11 AM     LOG [RouterExplorer] Mapped {/api/shares, GET} route +0ms

[Nest] 48  - 10/16/2024, 10:43:11 AM     LOG [RouterExplorer] Mapped {/api/shares/:id, GET} route +0ms

[Nest] 48  - 10/16/2024, 10:43:11 AM     LOG [RouterExplorer] Mapped {/api/shares/:id/from-owner, GET} route +0ms

[Nest] 48  - 10/16/2024, 10:43:11 AM     LOG [RouterExplorer] Mapped {/api/shares/:id/metaData, GET} route +0ms

[Nest] 48  - 10/16/2024, 10:43:11 AM     LOG [RouterExplorer] Mapped {/api/shares, POST} route +1ms

[Nest] 48  - 10/16/2024, 10:43:11 AM     LOG [RouterExplorer] Mapped {/api/shares/:id/complete, POST} route +0ms

[Nest] 48  - 10/16/2024, 10:43:11 AM     LOG [RouterExplorer] Mapped {/api/shares/:id/complete, DELETE} route +0ms

[Nest] 48  - 10/16/2024, 10:43:11 AM     LOG [RouterExplorer] Mapped {/api/shares/:id, DELETE} route +0ms

[Nest] 48  - 10/16/2024, 10:43:11 AM     LOG [RouterExplorer] Mapped {/api/shares/isShareIdAvailable/:id, GET} route +0ms

[Nest] 48  - 10/16/2024, 10:43:11 AM     LOG [RouterExplorer] Mapped {/api/shares/:id/token, POST} route +0ms

[Nest] 48  - 10/16/2024, 10:43:11 AM     LOG [RoutesResolver] ConfigController {/api/configs}: +0ms

[Nest] 48  - 10/16/2024, 10:43:11 AM     LOG [RouterExplorer] Mapped {/api/configs, GET} route +1ms

[Nest] 48  - 10/16/2024, 10:43:11 AM     LOG [RouterExplorer] Mapped {/api/configs/admin/:category, GET} route +0ms

[Nest] 48  - 10/16/2024, 10:43:11 AM     LOG [RouterExplorer] Mapped {/api/configs/admin, PATCH} route +0ms

[Nest] 48  - 10/16/2024, 10:43:11 AM     LOG [RouterExplorer] Mapped {/api/configs/admin/testEmail, POST} route +0ms

[Nest] 48  - 10/16/2024, 10:43:11 AM     LOG [RouterExplorer] Mapped {/api/configs/admin/logo, POST} route +0ms

[Nest] 48  - 10/16/2024, 10:43:11 AM     LOG [NestApplication] Nest application successfully started +20ms

[Nest] 48  - 10/16/2024, 10:43:15 AM     LOG [ClamScanService] ClamAV is not active

ERR ts=1729075396.277766 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"35472","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.00061283 status=502 err_id=y776u26q7 err_trace=reverseproxy.statusError (reverseproxy.go:1267)

ERR ts=1729075406.3360102 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"52812","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000554829 status=502 err_id=2j7wjtx9x err_trace=reverseproxy.statusError (reverseproxy.go:1267)

ERR ts=1729075416.3912308 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"43104","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000566089 status=502 err_id=28avcj050 err_trace=reverseproxy.statusError (reverseproxy.go:1267)
stonith404 commented 21 hours ago

Thanks. Aren't there more logs when you try to access the site? It should log something if a 500 error occurs. Because I can't really see an error besides the health check that is made to the wrong url.

bauermarkus commented 20 hours ago

I tried to access the URL after it was online for a while and that's the log i could save:

      family: undefined,
      beforeRedirect: [Function: dispatchBeforeRedirect],
      beforeRedirects: [Object],
      hostname: 'localhost',
      port: '8080',
      agent: undefined,
      nativeProtocols: [Object],
      pathname: '/api/configs'
    },
    _ended: true,
    _ending: true,
    _redirectCount: 0,
    _redirects: [],
    _requestBodyLength: 0,
    _requestBodyBuffers: [],
    _eventsCount: 3,
    _onNativeResponse: [Function (anonymous)],
    _currentRequest: ClientRequest {
      _events: [Object: null prototype],
      _eventsCount: 7,
      _maxListeners: undefined,
      outputData: [],
      outputSize: 0,
      writable: true,
      destroyed: false,
      _last: true,
      chunkedEncoding: false,
      shouldKeepAlive: true,
      maxRequestsOnConnectionReached: false,
      _defaultKeepAlive: true,
      useChunkedEncodingByDefault: false,
      sendDate: false,
      _removedConnection: false,
      _removedContLen: false,
      _removedTE: false,
      strictContentLength: false,
      _contentLength: 0,
      _hasBody: true,
      _trailer: '',
      finished: true,
      _headerSent: true,
      _closed: false,
      socket: [Socket],
      _header: 'GET /api/configs HTTP/1.1\r\n' +
        'Accept: application/json, text/plain, */*\r\n' +
        'User-Agent: axios/1.7.7\r\n' +
        'Accept-Encoding: gzip, compress, deflate, br\r\n' +
        'Host: localhost:8080\r\n' +
        'Connection: keep-alive\r\n' +
        '\r\n',
      _keepAliveTimeout: 0,
      _onPendingData: [Function: nop],
      agent: [Agent],
      socketPath: undefined,
      method: 'GET',
      maxHeaderSize: undefined,
      insecureHTTPParser: undefined,
      joinDuplicateHeaders: undefined,
      path: '/api/configs',
      _ended: false,
      res: null,
      aborted: false,
      timeoutCb: [Function: emitRequestTimeout],
      upgradeOrConnect: false,
      parser: null,
      maxHeadersCount: null,
      reusedSocket: false,
      host: 'localhost',
      protocol: 'http:',
      _redirectable: [Circular *1],
      [Symbol(shapeMode)]: false,
      [Symbol(kCapture)]: false,
      [Symbol(kBytesWritten)]: 0,
      [Symbol(kNeedDrain)]: false,
      [Symbol(corked)]: 0,
      [Symbol(kOutHeaders)]: [Object: null prototype],
      [Symbol(errored)]: null,
      [Symbol(kHighWaterMark)]: 16384,
      [Symbol(kRejectNonStandardBodyWrites)]: false,
      [Symbol(kUniqueHeaders)]: null
    },
    _currentUrl: 'http://localhost:8080/api/configs',
    [Symbol(shapeMode)]: true,
    [Symbol(kCapture)]: false
  },
  cause: Error: connect ECONNREFUSED 127.0.0.1:8080
      at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1607:16)
      at TCPConnectWrap.callbackTrampoline (node:internal/async_hooks:130:17) {
    errno: -111,
    code: 'ECONNREFUSED',
    syscall: 'connect',
    address: '127.0.0.1',
    port: 8080
  }
}
ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54712","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54712","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000498992 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54712","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54712","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000498992 status=502 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54712","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54712","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000498992 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54712","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54712","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000498992 status=502 err_id=kgpp22hz2 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54712","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54712","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000498992 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54712","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54712","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000498992 status=502 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54712","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54712","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000498992 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54712","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093295.2309337 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54712","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000498992 status=502 err_id=kgpp22hz2 err_trace=reverseproxy.statusError (reverseproxy.go:1267)
ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54958","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54958","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000633117 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54958","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54958","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000633117 status=502 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54958","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54958","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000633117 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54958","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54958","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000633117 status=502 err_id=y8537ucy9 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54958","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54958","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000633117 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54958","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54958","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000633117 status=502 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54958","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54958","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000633117 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54958","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093305.2953725 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"54958","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000633117 status=502 err_id=y8537ucy9 err_trace=reverseproxy.statusError (reverseproxy.go:1267)
ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58310","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58310","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000582351 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58310","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58310","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000582351 status=502 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58310","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58310","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000582351 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58310","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58310","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000582351 status=502 err_id=unwya7uxg ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58310","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58310","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000582351 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58310","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58310","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000582351 status=502 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58310","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58310","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000582351 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58310","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093315.350933 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58310","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000582351 status=502 err_id=unwya7uxg err_trace=reverseproxy.statusError (reverseproxy.go:1267)
ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58660","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58660","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000662733 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58660","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58660","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000662733 status=502 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58660","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58660","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000662733 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58660","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58660","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000662733 status=502 err_id=4q6mfsjjd ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58660","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58660","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000662733 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58660","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58660","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000662733 status=502 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58660","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58660","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000662733 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58660","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093325.4101264 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"58660","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000662733 status=502 err_id=4q6mfsjjd err_trace=reverseproxy.statusError (reverseproxy.go:1267)
ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"48994","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"48994","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000569908 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"48994","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"48994","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000569908 status=502 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"48994","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"48994","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000569908 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"48994","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"48994","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000569908 status=502 err_id=9b2sw897i ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"48994","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"48994","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000569908 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"48994","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"48994","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000569908 status=502 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"48994","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"48994","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000569908 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"48994","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 ERR ERR ERR ERR ERR ERR ERR ERR ts=1729093335.474741 logger=http.log.error.log0 msg=dial tcp 127.0.0.1:8080: connect: connection refused request={"remote_ip":"127.0.0.1","remote_port":"48994","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"localhost:3000","uri":"/api/health","headers":{"User-Agent":["curl/8.10.1"],"Accept":["*/*"]}} duration=0.000569908 status=502 err_id=9b2sw897i err_trace=reverseproxy.statusError (reverseproxy.go:1267)