# # DSpace Configuration # # Revision: $Revision: 1.42 $ # # Date: $Date: 2005/03/01 02:59:50 $ # ##### Basic information ###### # DSpace installation directory dspace.dir = c:/dspace # DSpace base URL. Include port number etc., but NOT trailing slash dspace.url = https://dspace.myu.edu:8080/dspace # DSpace host name - should match base URL. Do not include port number #dspace.hostname = dspace.myu.edu dspace.hostname = dspace.niper.ac.in # Name of the site #dspace.name = DSpace at My University dspace.name = DSpace at NIPER ##### Destinations for configuration files for other tools ##### # Comment out any lines corresponding to files you don't need, so they # don't get copied # Example Apache HTTPD configuration # config.template.apache13.conf = /dspace/config/httpd.conf config.template.log4j.properties = c:/dspace/config/log4j.properties config.template.log4j-handle-plugin.properties = c:/dspace/config/log4j-handle-plugin.properties config.template.oaicat.properties = c:/dspace/config/oaicat.properties ##### Database settings ##### # Database name ("oracle", or "postgres") db.name = postgres #db.name = oracle # URL for connecting to database db.url = jdbc:postgresql://localhost:5432/dspace # JDBC Driver db.driver = org.postgresql.Driver # Database username and password db.username = dspace db.password = dspace # Connection pool parameters # Maximum number of DB connections in pool db.maxconnections = 30 # Maximum time to wait before giving up if all connections in pool are busy (milliseconds) db.maxwait = 5000 # Maximum number of idle connections in pool (-1 = unlimited) db.maxidle = -1 ##### Email settings ###### # SMTP mail server #mail.server=smtp.myu.edu mail.server=smtp.niper.ac.in # From address for mail #mail.from.address = dspace-noreply@myu.edu mail.from.address = shivendra@niper.ac.in # Currently limited to one recipient! #feedback.recipient = dspace-help@myu.edu feedback.recipient = shivendra@niper.ac.in # General site administration (Webmaster) e-mail #mail.admin = dspace-help@myu.edu mail.admin = shivendra@niper.ac.in # Recipient for server errors and alerts # alert.recipient = email-address-here ##### File Storage ###### # Asset (bitstream) store number 0 (zero) assetstore.dir = c:/dspace/assetstore # Specify extra asset stores like this, counting from 1 upwards: # assetstore.dir.1 = /second/assetstore # assetstore.dir.2 = /third/assetstore # Specify the number of the store to use for new bitstreams with this property # The default is 0 (zero) which corresponds to the 'assetstore.dir' above # assetstore.incoming = 1 # Directory for history serializations history.dir = c:/dspace/history # Where to put search index files search.dir = c:/dspace/search # Higher values of search.max-clauses will enable prefix searches to work on large # repositories #search.max-clauses=2048 # Where to put the logs log.dir = c:/dspace/log # Where to temporarily store uploaded files upload.temp.dir = c:/dspace/upload # Maximum size of uploaded files in bytes, must be positive # 512Mb upload.max = 536870912 ##### Handle settings ###### # CNRI Handle prefix handle.prefix = 123456789 # Directory for installing Handle server files handle.dir = c:/dspace/handle-server ##### Web UI Settings ###### # The site authenticator - must implement org.dspace.app.webui.SiteAuthenticator webui.site.authenticator = org.dspace.app.webui.SimpleAuthenticator # Certificate authority webui.cert.ca = c:/dspace/etc/certificate-ca.pem # If a user presents a valid Web certificate, but does not have an e-person # record, should they automatically be given a new e-person record? webui.cert.autoregister = true # Should the submit UI block submissions marked as theses? webui.submit.blocktheses = false # whether to display thumbnails on browse and search results pages (1.2+) webui.browse.thumbnail.show = false # max dimensions of the browse/search thumbs. Must be <= thumbnail.maxwidth # and thumbnail.maxheight. Only need to be set if required to be smaller than # dimension of thumbnails generated by mediafilter (1.2+) #webui.browse.thumbnail.maxheight = 80 #webui.browse.thumbnail.maxwidth = 80 # whether to display the thumb against each bitstream (1.2+) webui.item.thumbnail.show = true # where should clicking on a thumbnail from browse/search take the user # Only values currently supported are "item" and "bitstream" #webui.browse.thumbnail.linkbehaviour = item # whether to display collection and community strengths webui.strengths.show = false ##### SFX Server ##### # SFX query is appended to this URL. If this property is commented out or # omitted, SFX support is switched off. # sfx.server.url = http://sfx.myu.edu:8888/sfx? ##### Ingest settings ##### # Default language for content of submissions default.language = en_US ##### Media Filter settings ##### # maximum width and height of generated thumbnails thumbnail.maxwidth 80 thumbnail.maxheight 80 ##### Fulltext Indexing settings ##### # Maximum number of terms indexed for a single field in Lucene. # Default is 10,000 words - often not enough for full-text indexing. # If you change this, you'll need to re-index for the change # to take effect on previously added items. # -1 = unlimited (Integer.MAX_VALUE) search.maxfieldlength = 10000 ##### Fields to Index for Search ##### # DC metadata elements.qualifiers to be indexed for search # format: - search.index.[number] = [search field]:element.qualifier # - * used as wildcard ### changing these will change your search results, ### ### but will NOT automatically change your search displays ### search.index.1 = author:contributor.* search.index.2 = author:creator.* search.index.3 = title:title.* search.index.4 = keyword:subject.* search.index.5 = abstract:description.abstract search.index.6 = author:description.statementofresponsibility search.index.7 = series:relation.ispartofseries search.index.8 = abstract:description.tableofcontents search.index.9 = mime:format.mimetype search.index.10 = sponsor:description.sponsorship search.index.11 = id:identifier.* #### Creative Commons settings ###### # are Creative Commons licenses used in submission? webui.submit.enable-cc = false #### Proxy Settings ###### # uncomment and specify both properties if proxy server required # proxy server for external http requests - use regular hostname without port number #http.proxy.host = # port number of proxy server #http.proxy.port =