Statistics
| Branch: | Tag: | Revision:

root / snf-pithos-app / conf / 20-snf-pithos-app-settings.conf @ 6ce03057

History | View | Annotate | Download (2.2 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_AUTH_URL = 'https://accounts.example.synnefo.org/identity/v2.0'
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
## Proxy Astakos services under the following path
41
#PITHOS_PROXY_PREFIX = '_astakos'
42

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