Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (2.5 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
# SQLAlchemy (choose SQLite/MySQL/PostgreSQL).
8
#PITHOS_BACKEND_DB_MODULE = 'pithos.backends.lib.sqlalchemy'
9
#PITHOS_BACKEND_DB_CONNECTION = 'sqlite:////tmp/pithos-backend.db'
10

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

    
16
# Default setting for new accounts.
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
## Proxy Astakos services under the following path
38
#PITHOS_PROXY_PREFIX = '_astakos'
39

    
40
# Tune the size of the http pool for the astakos client.
41
# It limits the maximum number of quota changing requests
42
# that pithos can serve. Extra requests will be blocked
43
# until another has completed.
44
#PITHOS_ASTAKOSCLIENT_POOLSIZE = 200
45
#
46
# How many random bytes to use for constructing the URL of Pithos public files.
47
# Lower values mean accidental reuse of (discarded) URLs is more probable.
48
# Note: the active public URLs will always be unique.
49
#       Only the old and discarded URLs can ever be reused.
50
# Higher values mean more safety and longer URLs
51
#PITHOS_PUBLIC_URL_SECURITY = 16
52
#
53
# Tune the size of the pithos backend pool.
54
# It limits the maximum number of requests that pithos can serve.
55
# Extra requests will be blocked until another has completed.
56
#PITHOS_BACKEND_POOL_SIZE = 5
57
#
58
# Set the credentials (client_id, client_secret) issued for authenticating
59
# the views with astakos during the resource access token generation procedure
60
#PITHOS_OAUTH2_CLIENT_CREDENTIALS = (None, None)
61
#
62
# Set domain to restrict requests of pithos object contents serve endpoint or
63
# None for no domain restriction
64
#PITHOS_UNSAFE_DOMAIN = None