Guest User

Untitled

a guest
Oct 18th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.66 KB | None | 0 0
  1.  
  2. #
  3. # SQL connection information
  4. # This user only needs SELECT on the personas db.
  5. SQL_HOST = 'localhost'
  6. SQL_USER = 'root'
  7. SQL_PASS = ''
  8. SQL_DB = 'personas'
  9.  
  10. #
  11. # Path information
  12. # Where to keep things on the server. No trailing slashes (but leading
  13. # slashes are important). PATH_ROOT gets prepended to all other paths, and
  14. # will store the pid file.
  15. PATH_ROOT = ''
  16. PATH_CATALOG = '/catalog'
  17. PATH_LOG = '/log'
  18.  
  19. #
  20. # Listen information
  21. # What ports to listen on.
  22. LISTEN_PORT = 3312
  23. LISTEN_SQL_HOST = 'localhost'
  24. LISTEN_SQL_PORT = 3306
  25.  
  26. #
  27. # Max matches
  28. # This should match the SPHINX_MAX_MATCHES setting in personas_constants.php
  29. MAX_MATCHES = 10000
Add Comment
Please, Sign In to add comment