aboutsummaryrefslogtreecommitdiff
path: root/backend/config.py
blob: a4a12091aa805ae6464e0f1a2c8b06623840c6fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Default URL to redirect invalid accesses to
homepage = "https://stumpf.es/"
# Base path for uploaded files
fileroot = "/media/disk1/files.stumpf.es/" 
# Global disk space limit
global_limit = 0
# Use per-user directories below the fileroot for individual storage
user_subdirs = True
# Path to the backing database
database = "cargohold.db3"

# Settings for the web admin panel

# Base URL for rendering alias links
baseurl = "https://files.stumpf.es/"

# Select the authentication provider for the web admin interface
import NoneAuth as Auth