Statistics
| Branch: | Tag: | Revision:

root / snf-pithos-app / conf / 20-snf-pithos-app-settings.conf @ faad3c72

History | View | Annotate | Download (2.4 kB)

1
# Top-level URL for Pithos. Must set.
2
#PITHOS_BASE_URL = "https://pithos.example.synnefo.org/"
3

    
4
# Top-level URL for the Astakos instance to be used for user management
5
#ASTAKOS_BASE_URL = 'https://accounts.example.synnefo.org/'
6

    
7
# Cookie name to search for fallback token
8
#PITHOS_ASTAKOS_COOKIE_NAME = '_pithos2_a'
9

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

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

    
19
# Default setting for new accounts.
20
#PITHOS_BACKEND_VERSIONING = 'auto'
21
#PITHOS_BACKEND_FREE_VERSIONING = True
22

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

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

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

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

    
40
# Set PITHOS_PROXY_USER_SERVICES to True to have snf-pithos-app handle all
41
# Astakos user-visible services (feedback, login, etc.) by proxying them to
42
# a running Astakos.
43
# Set to False if snf astakos-app is running on the same machine, so it handles
44
# the requests on its own.
45
#PITHOS_PROXY_USER_SERVICES = True
46

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