Advertisement
Guest User

Untitled

a guest
Jun 27th, 2016
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. ezpublish:
  2. # Repositories configuration, setup default repository to support solr if enabled
  3. repositories:
  4. default:
  5. storage: ~
  6. search:
  7. engine: %search_engine%
  8. connection: default
  9.  
  10. # Siteaccess configuration, with one siteaccess per default
  11. siteaccess:
  12. list: [site]
  13. groups:
  14. site_group: [site]
  15. default_siteaccess: site
  16. match:
  17. URIElement: 1
  18.  
  19. # System settings, grouped by siteaccess and/or siteaccess group
  20. system:
  21. default:
  22. io:
  23. metadata_handler: dfs
  24. binarydata_handler: nfs
  25. url_prefix: "storage"
  26. site_group:
  27. # Pool to use for cache, needs to be differant per repository (database).
  28. cache_pool_name: '%cache_pool%'
  29. # These reflect the current installers, complete installation before you change them. For changing var_dir
  30. # it is recommended to install clean, then change setting before you start adding binary content, otherwise you'll
  31. # need to manually modify your database data to reflect this to avoid exceptions.
  32. var_dir: var/site
  33. # System languages. Note that by default, content, content types, and other data are in eng-GB locale,
  34. # so removing eng-GB from this list may lead to errors or content not being shown, unless you change
  35. # all eng-GB data to other locales first.
  36. languages: [eng-GB]
  37.  
  38. # new doctrine connection for the dfs legacy_dfs_cluster metadata handler.
  39.  
  40. doctrine:
  41. dbal:
  42. connections:
  43. dfs:
  44. driver: pdo_mysql
  45. host: 10.0.5.4
  46. port: 3306
  47. dbname: ezp
  48. user: ezp
  49. password: "ezp"
  50. charset: UTF8
  51.  
  52. # declare the handlers
  53. ez_io:
  54. binarydata_handlers:
  55. nfs:
  56. flysystem:
  57. adapter: nfs_adapter
  58. metadata_handlers:
  59. dfs:
  60. legacy_dfs_cluster:
  61. connection: doctrine.dbal.dfs_connection
  62.  
  63. oneup_flysystem:
  64. adapters:
  65. nfs_adapter:
  66. local:
  67. # The last part, $var_dir$/$storage_dir$, is required for legacy compatibility
  68. directory: "/mnt/ezdfs/$var_dir$/$storage_dir$"
  69.  
  70. stash:
  71. caches:
  72. default:
  73. drivers: [ Memcache ]
  74. inMemory: true
  75. registerDoctrineAdapter: false
  76. Memcache:
  77. prefix_key: ezdemo_
  78. retry_timeout: 1
  79. servers:
  80. -
  81. server: 192.168.2.221
  82. port: 11211
  83. -
  84. server: 192.168.2.211
  85. port: 11211
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement