No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

confspecs.py 1.3KB

12345678910111213141516171819202122232425262728293031323334
  1. from lodel.context import LodelContext
  2. LodelContext.expose_modules(globals(), {
  3. 'lodel.validator.validator': ['Validator']})
  4. #Define a minimal confspec used by multisite loader
  5. LODEL2_CONFSPECS = {
  6. 'lodel2': {
  7. 'debug': (True, Validator('bool'))
  8. },
  9. 'lodel2.server': {
  10. 'listen_address': ('127.0.0.1', Validator('dummy')),
  11. #'listen_address': ('', Validator('ip')), #<-- not implemented
  12. 'listen_port': ( 1337, Validator('int')),
  13. 'uwsgi_workers': (8, Validator('int')),
  14. 'uwsgicmd': ('/usr/bin/uwsgi', Validator('dummy')),
  15. 'virtualenv': (None, Validator('path', none_is_valid = True)),
  16. },
  17. 'lodel2.logging.*' : {
  18. 'level': ( 'ERROR',
  19. Validator('loglevel')),
  20. 'context': ( False,
  21. Validator('bool')),
  22. 'filename': ( None,
  23. Validator('errfile', none_is_valid = True)),
  24. 'backupcount': ( 10,
  25. Validator('int', none_is_valid = False)),
  26. 'maxbytes': ( 1024*10,
  27. Validator('int', none_is_valid = False)),
  28. },
  29. 'lodel2.datasources.*': {
  30. 'read_only': (False, Validator('bool')),
  31. 'identifier': ( None, Validator('string')),
  32. }
  33. }