Statistics
| Branch: | Tag: | Revision:

root / snf-pithos-app / conf / 20-snf-pithos-app-settings.conf @ 4ab620b6

History | View | Annotate | Download (2.5 kB)

1
#ASTAKOS_URL = 'https://accounts.example.synnefo.org/'
2

    
3
# Cookie name to search for fallback token
4
#PITHOS_ASTAKOS_COOKIE_NAME = '_pithos2_a'
5

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

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

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

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

    
25
# Service Token acquired by identity provider.
26
#PITHOS_SERVICE_TOKEN = ''
27

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

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

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

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