mirror of
				https://gitea.publichub.eu/oscar.krause/fastapi-dls.git
				synced 2025-11-04 13:06:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			624 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			624 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# Toggle FastAPI debug mode
 | 
						|
DEBUG=false
 | 
						|
 | 
						|
# Where the client can find the DLS server
 | 
						|
## DLS_URL should be a hostname
 | 
						|
DLS_URL="localhost.localdomain"
 | 
						|
DLS_PORT=8443
 | 
						|
CORS_ORIGINS="https://$DLS_URL:$DLS_PORT"
 | 
						|
 | 
						|
# Lease expiration in days
 | 
						|
LEASE_EXPIRE_DAYS=90
 | 
						|
 | 
						|
# Database location
 | 
						|
## https://docs.sqlalchemy.org/en/14/core/engines.html
 | 
						|
DATABASE="sqlite:////var/lib/fastapi-dls/db.sqlite"
 | 
						|
 | 
						|
# UUIDs for identifying the instance
 | 
						|
SITE_KEY_XID="<<sitekey>>"
 | 
						|
INSTANCE_REF="<<instanceref>>"
 | 
						|
 | 
						|
# Site-wide signing keys
 | 
						|
INSTANCE_KEY_RSA="/var/lib/fastapi-dls/instance.private.pem"
 | 
						|
INSTANCE_KEY_PUB="/var/lib/fastapi-dls/instance.public.pem"
 |