10 lines
No EOL
283 B
Python
10 lines
No EOL
283 B
Python
import os
|
|
SECRETKEY = os.path.join("secrets", "pubkey.pem")
|
|
|
|
MINIO_ADDR = "data.example.xyz"
|
|
MINIO_ACCESS_KEY = "access-key-goes-here"
|
|
MINIO_SECRET_KEY = "secret-key-goes-here"
|
|
|
|
MAX_FILE_SIZE = 1024*1024*20
|
|
# Need to figure out how to make this cooperate more
|
|
ALLOWED_DOMAINS = ["*"] |