Statistics
| Branch: | Tag: | Revision:

root / snf-pithos-app / conf / 20-snf-pithos-app-settings.conf @ 591e1df0

History | View | Annotate | Download (2.5 kB)

1
#PITHOS_AUTHENTICATION_URL = 'https://accounts.example.synnefo.org/im/authenticate/'
2

    
3
#PITHOS_AUTHENTICATION_USERS = {}
4

    
5
# Cookie name to search for fallback token
6
#PITHOS_ASTAKOS_COOKIE_NAME = '_pithos2_a'
7

    
8
# SQLAlchemy (choose SQLite/MySQL/PostgreSQL).
9
#PITHOS_BACKEND_DB_MODULE = 'pithos.backends.lib.sqlalchemy'
10
#PITHOS_BACKEND_DB_CONNECTION = 'sqlite:////tmp/pithos-backend.db'
11

    
12
# Block storage.
13
#PITHOS_BACKEND_BLOCK_MODULE = 'pithos.backends.lib.hashfiler'
14
#PITHOS_BACKEND_BLOCK_PATH = '/tmp/pithos-data/'
15
#PITHOS_BACKEND_BLOCK_UMASK = 0o022
16

    
17
# Default setting for new accounts.
18
#PITHOS_BACKEND_QUOTA = 50 * 1024 * 1024 * 1024
19
#PITHOS_BACKEND_VERSIONING = 'auto'
20
#PITHOS_BACKEND_FREE_VERSIONING = True
21

    
22
# Enable if object checksums are required
23
# False results to improved performance
24
# but breaks the compatibility with the OpenStack Object Storage API
25
#PITHOS_UPDATE_MD5 = False
26

    
27
# Service Token acquired by identity provider.
28
#PITHOS_SERVICE_TOKEN = ''
29

    
30
# Enable and configure secondary rados storage for pithos
31
#PITHOS_RADOS_STORAGE = False
32
#PITHOS_RADOS_POOL_BLOCKS = 'blocks'
33
#PITHOS_RADOS_POOL_MAPS = 'maps'
34

    
35
# This enables a ui compatibility layer for the introduction of UUIDs in
36
# identity management.  WARNING: Setting to True will break your installation.
37
# PITHOS_TRANSLATE_UUIDS = False
38

    
39
# Set PROXY_USER_SERVICES to True to have snf-pithos-app handle all Astakos
40
# user-visible services (feedback, login, etc.) by proxying them to a running
41
# Astakos.
42
# Set to False if snf astakos-app is running on the same machine, so it handles
43
# the requests on its own.
44
#PROXY_USER_SERVICES = True
45
#PITHOS_USER_CATALOG_URL = 'https://accounts.example.synnefo.org/user_catalogs/'
46
#PITHOS_USER_FEEDBACK_URL = 'https://accounts.example.synnefo.org/feedback/'
47
#PITHOS_USER_LOGIN_URL = 'https://accounts.example.synnefo.org/login/'
48

    
49
# Enable and configure quotaholder
50
#PITHOS_USE_QUOTAHOLDER = False
51
#PITHOS_QUOTAHOLDER_URL = ''
52
#PITHOS_QUOTAHOLDER_TOKEN = ''
53
#
54
# Tune the size of the http pool for the quotaholder client.
55
# It limits the maximum number of quota changing requests
56
# that pithos can serve. Extra requests will be blocked
57
# until another has completed.
58
#
59
#PITHOS_QUOTAHOLDER_POOLSIZE = 200
60
#
61
# How many random bytes to use for constructing the URL of Pithos public files.
62
# Lower values mean accidental reuse of (discarded) URLs is more probable.
63
# Note: the active public URLs will always be unique.
64
#       Only the old and discarded URLs can ever be reused.
65
# Higher values mean more safety and longer URLs
66
#
67
#PITHOS_PUBLIC_URL_SECURITY = 16
68
#
69
#PITHOS_BACKEND_POOL_SIZE = 5