Add settings namespace.
[pithos] / pithos / settings.d / 10-backend.conf
diff --git a/pithos/settings.d/10-backend.conf b/pithos/settings.d/10-backend.conf
deleted file mode 100644 (file)
index aeb6b34..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-# The backend modules to use and their initilization options.
-
-# SQLite.
-#BACKEND_DB_MODULE = 'pithos.backends.lib.sqlite'
-#BACKEND_DB_CONNECTION = join(PROJECT_PATH, 'backend.db')
-
-# SQLAlchemy (choose SQLite/MySQL/PostgreSQL).
-BACKEND_DB_MODULE = 'pithos.backends.lib.sqlalchemy'
-BACKEND_DB_CONNECTION = 'sqlite:///' + join(PROJECT_PATH, 'backend.db')
-#BACKEND_DB_CONNECTION = 'mysql://user:pass@host/db'
-#BACKEND_DB_CONNECTION = 'postgresql://user:pass@host/db'
-
-# Block storage.
-BACKEND_BLOCK_MODULE = 'pithos.backends.lib.hashfiler'
-BACKEND_BLOCK_PATH = join(PROJECT_PATH, 'data/')
-
-# Queue for billing.
-#BACKEND_QUEUE_MODULE = 'pithos.backends.lib.rabbitmq'
-#BACKEND_QUEUE_CONNECTION = 'rabbitmq://guest:guest@localhost:5672/pithos'
-BACKEND_QUEUE_MODULE = None
-BACKEND_QUEUE_CONNECTION = None
-
-# Default setting for new accounts.
-BACKEND_QUOTA = 50 * 1024 * 1024 * 1024
-BACKEND_VERSIONING = 'auto'