Advertisement
Guest User

Untitled

a guest
Oct 18th, 2013
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. # file.name=fgsconfig-basic-for-islandora.properties
  2.  
  3. # This is a version of fgsconfig-basic.properties tailored for islandora
  4.  
  5. # These properties are used by running from command line:
  6. # >ant -f fgsconfig-basic.xml -Dlocal.FEDORA_HOME=$FEDORA_HOME -propertyfile fgsconfig-basic-for-islandora.properties
  7. # Be sure you have permissions to write to finalConfigPath.
  8.  
  9. # You must tailor the lines between #>>>>>>>>>> and #<<<<<<<<<<
  10.  
  11. # configDisplayName is displayed on the admin pages, so you know, which set of config files is in action.
  12. # configDisplayName is also used as directory name of the config within the FgsConfigTemplate directory.
  13. configDisplayName=configForIslandoraSolr
  14.  
  15. # gsearchBase is used for SOAP deployment.
  16. gsearchBase=http://localhost:8080
  17.  
  18. # gsearchAppName is used for SOAP deployment.
  19. gsearchAppName=fedoragsearch
  20.  
  21. # gsearchUser is used for SOAP deployment.
  22. gsearchUser=fgsAdmin
  23.  
  24. # gsearchPass is used for SOAP deployment.
  25. #>>>>>>>>>>
  26. gsearchPass={{ fgs_admin_password }}
  27. #<<<<<<<<<<
  28.  
  29. # finalConfigPath must be in the classpath of the web server, must be an absolute path.
  30. #>>>>>>>>>>
  31. #finalConfigPath=${local.FEDORA_HOME}/tomcat/webapps/fedoragsearch/WEB-INF/classes
  32. finalConfigPath={{root}}/app/tomcat/webapps/fedoragsearch/WEB-INF/classes
  33. #<<<<<<<<<<
  34.  
  35. # At startup, GSearch will find the file log4j.xml in tomcat classpath.
  36. # logFilePath is where to find the log file.
  37. logFilePath={{root}}/app/server/logs
  38.  
  39. # logLevel can be DEBUG, INFO, WARN, ERROR, FATAL.
  40. logLevel=DEBUG
  41.  
  42. # namesOfRepositories separated by space.
  43. namesOfRepositories=FgsRepos
  44.  
  45. # namesOfIndexes separated by space.
  46. namesOfIndexes=FgsIndex
  47.  
  48. # Assuming there is one repository:
  49.  
  50. # fedoraBase is base url of the repository.
  51. #>>>>>>>>>>
  52. fedoraBase=http://localhost:8080
  53. #<<<<<<<<<<
  54.  
  55. # fedoraAppName is Fedora app name of this repository.
  56. fedoraAppName=fedora
  57.  
  58. # fedoraUser is the user name to access this repository.
  59. fedoraUser=fedoraAdmin
  60.  
  61. # fedoraPass is the password to access this repository.
  62. #>>>>>>>>>>
  63. fedoraPass={{ fedora_admin_password }}
  64. #<<<<<<<<<<
  65.  
  66. # fedoraVersion is the Fedora version of this repository.
  67. fedoraVersion=3.6
  68.  
  69. #objectStoreBase must be the location of the objects of this repository.
  70. #>>>>>>>>>>
  71. objectStoreBase={{root}}/app/data/objectStore
  72. #<<<<<<<<<<
  73.  
  74. #Assuming there is one index:
  75.  
  76. # indexEngine is Lucene, Solr, or Zebra.
  77. indexEngine=Solr
  78.  
  79. # FgsIndex: indexBase is the server base url, in case of Solr or Zebra.
  80. indexBase=http://localhost:8080/solr
  81.  
  82. # FgsIndex: indexDir is the path to the index.
  83. # indexDir={{root}}/app/gsearch/FgsIndex/index
  84. indexDir={{ root }}/app/solr/collection1/data/index
  85.  
  86. # FgsIndex: indexingDocXslt is the name of the indexing stylesheet.
  87. indexingDocXslt=foxmlToSolr
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement