Statistics
| Branch: | Tag: | Revision:

root / snf-pithos-app / conf / 20-snf-pithos-app-settings.conf @ 16f2673e

History | View | Annotate | Download (2.4 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_ACCOUNT_QUOTA = 50 * 1024 * 1024 * 1024
17
#PITHOS_BACKEND_CONTAINER_QUOTA = 0
18
#PITHOS_BACKEND_VERSIONING = 'auto'
19
#PITHOS_BACKEND_FREE_VERSIONING = True
20

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

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

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

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

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

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