39 lines
1.3 KiB
YAML
39 lines
1.3 KiB
YAML
server:
|
|
port: 5555
|
|
read_timeout_seconds: 30
|
|
write_timeout_seconds: 30
|
|
idle_timeout_seconds: 60
|
|
|
|
log_level: "info" # debug, info, warn, error
|
|
|
|
google:
|
|
project_id: "ohifproxy" # Replace with your GCP project ID
|
|
location: "asia-southeast2" # Match your dataset region
|
|
dataset: "sas-storage" # Your dataset name
|
|
dicom_store: "store-1" # Your DICOM store name
|
|
credentials_path: "./credentials/service-account.json"
|
|
|
|
auth:
|
|
jwt_secret: "vQ6PQqUyh7pBNOytClgN+Nw1XBq7F8Qo6VP3VwIqvHY=" # Change this in production!
|
|
access_token_expiry: 1440 # minutes (24 hours)
|
|
refresh_token_expiry: 168 # hours (7 days)
|
|
enable_database_auth: true # Changed to true to use database
|
|
pydicom_api_key: "2f0ff447b2c3aeef2004e83a750ded97e29ba8c0ccc70053d5e26f5d715e42ff"
|
|
|
|
shortlink:
|
|
base_url: "http://localhost:3333" # The base URL for generated OHIF Auth shortlinks
|
|
default_expiry_hours: 30 * 24 # Default expiry time for shortlinks (30 days)
|
|
max_attempts: 5 # Maximum number of failed login attempts
|
|
|
|
database:
|
|
host: "localhost"
|
|
port: 3306
|
|
user: "root"
|
|
password: "alfandi102938" # Change this to your MariaDB password
|
|
name: "ohif_proxy"
|
|
max_open_conns: 10
|
|
max_idle_conns: 5
|
|
conn_max_lifetime_mins: 60
|
|
|
|
allowed_origins:
|
|
- "*" # For development; restrict this in production |