Files
runtime/apps/runner/internal/constants/auth.go
T
Toma Puljak a708b15a82 feat(proxy): proxy app and refactor
- added a centralized proxy app
- proxy supports auth via query param, header or JWT cookie
- added a proxy to the daemon
- runner now proxies everything to daemon instead of directly to container port

Signed-off-by: Toma Puljak <toma.puljak@hotmail.com>
2025-06-18 17:09:54 +02:00

11 lines
244 B
Go

// Copyright 2025 Daytona Platforms Inc.
// SPDX-License-Identifier: AGPL-3.0
package constants
const BEARER_AUTH_HEADER = "Bearer"
const AUTHORIZATION_HEADER = "Authorization"
const DAYTONA_AUTHORIZATION_HEADER = "X-Daytona-Authorization"