Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (2.3 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_ACCOUNT_QUOTA = 50 * 1024 * 1024 * 1024
21
#PITHOS_BACKEND_CONTAINER_QUOTA = 0
22
#PITHOS_BACKEND_VERSIONING = 'auto'
23
#PITHOS_BACKEND_FREE_VERSIONING = True
24

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

    
30
# Service Token acquired by identity provider.
31
#PITHOS_SERVICE_TOKEN = ''
32

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

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

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

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