File tree Expand file tree Collapse file tree
sample_solutions/DocSummarization Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -228,6 +228,10 @@ LOG_LEVEL=INFO
228228MAX_FILE_SIZE=524288000
229229MAX_PDF_SIZE=52428800
230230MAX_PDF_PAGES=100
231+
232+ # SSL Verification Settings
233+ # Set to false only for dev with self-signed certs
234+ VERIFY_SSL=true
231235EOF
232236```
233237
239243- ** INFERENCE_MODEL_NAME** : Use the exact model name from your inference service
240244 - To check available models: ` curl https://your-api-endpoint.com/v1/models -H "Authorization: Bearer your-token" `
241245- ** LOCAL_URL_ENDPOINT** : Only needed if using local domain mapping
246+ - ** VERIFY_SSL** : Controls SSL certificate verification (default: ` true ` )
247+ - Set to ` false ` only for development environments with self-signed certificates
248+ - Keep as ` true ` for production environments
242249
243250** Note** : The docker-compose.yml file automatically loads environment variables from both ` .env ` (root) and ` ./backend/.env ` (backend) files.
244251
You can’t perform that action at this time.
0 commit comments