-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.example.env
More file actions
12 lines (10 loc) · 915 Bytes
/
.example.env
File metadata and controls
12 lines (10 loc) · 915 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
# --- Proxy Application Configuration ---
APP_TITLE=<TITLE> # Título para la app de FastAPI (e.g., SmartPot API Proxy)
API_URL=<URL_API_REAL> # URL completa de tu API de Spring Boot (e.g., https://localhost:8091)
# --- CORS Configuration ---
CORS_ALLOWED_ORIGINS=<ORIGINS_LIST> # Orígenes permitidos, separados por coma (e.g., https://localhost:8092,https://localhost:8093)
CORS_ALLOW_CREDENTIALS=<TRUE_OR_FALSE> # Permitir que el navegador envíe credenciales (e.g., true)
CORS_ALLOW_METHODS=<METHODS_LIST> # Métodos HTTP permitidos (e.g., POST,GET,OPTIONS o *)
CORS_ALLOW_HEADERS=<HEADERS_LIST> # Cabeceras HTTP permitidas (e.g., Content-Type,Authorization o *)
# --- Security Configuration ---
SECURITY_SCHEME_NAME=<AUTH_SCHEME_NAME> # El esquema de autenticación que tu API real espera (e.g., Bearer)