Просмотр файла orblog-master/config.php

Размер файла: 1.3Kb
  1. <?php
  2. /*-----------------------------------------------------------------------------
  3. orblog - Simple blog for hidden networks.
  4. Version: 0.1
  5. GitLab: https://github.com/neuberon/orblog/
  6. Copyright: neuberon@disroot.org 2020
  7. License: http://www.apache.org/licenses/LICENSE-2.0
  8.  
  9. -----------------------------------------------------------------------------*/
  10. // Path to database.
  11. define('DATABASE', 'private/data/data.sqlite');
  12.  
  13. // URL with ending "/".
  14. define('URL', 'http://orblog.local/');
  15.  
  16. // Language (en, ru).
  17. define('LANG', 'en');
  18.  
  19. // Admin password.
  20. define('PASS', 'changeme');
  21.  
  22. // Title.
  23. define('TITLE', 'orblog - simple blog');
  24.  
  25. // Text logo in header.
  26. define('TEXTLOGO','orblog');
  27.  
  28. // Header text.
  29. define('H_DESC', 'Simple blog for hidden services with markdown support. Read README.md for more info or visit <a href="https://github.com/neuberon/orblog/">https://github.com/neuberon/orblog/</a>');
  30.  
  31. // Copyright.
  32. define('COPY', 'orblog 2020');
  33.  
  34. // Max. posts per page.
  35. define('MAXPOSTS', 10);
  36.  
  37. // Allow comments.
  38. define('COMMENTS', true);
  39.  
  40. // Antiflood.
  41. define('ANTIFLOOD', 30);
  42.