- 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>
11 lines
244 B
Go
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"
|