removing junk deploy properties files
This commit is contained in:
parent
9dd516dcfa
commit
3556603927
8 changed files with 0 additions and 788 deletions
|
@ -1,119 +0,0 @@
|
||||||
# -----------------------------------------------------------------------------
|
|
||||||
#
|
|
||||||
# VIVO deployment properties
|
|
||||||
#
|
|
||||||
# This file is provided as example.deploy.properties.
|
|
||||||
#
|
|
||||||
# Save a copy of this file as deploy.properties, and edit the properties as
|
|
||||||
# needed for your deployment.
|
|
||||||
#
|
|
||||||
# -----------------------------------------------------------------------------
|
|
||||||
|
|
||||||
#
|
|
||||||
# This namespace will be used when generating URIs for objects created in the
|
|
||||||
# editor. Change it to reflect your own domain. For example, Cornell's
|
|
||||||
# namespace is http://vivo.cornell.edu/individual/
|
|
||||||
#
|
|
||||||
# Note: it is essential that this namespace end with a trailing slash.
|
|
||||||
#
|
|
||||||
Vitro.defaultNamespace = http://vivo.ufl.edu/individual/
|
|
||||||
|
|
||||||
#
|
|
||||||
# Where is the Vitro core directory?
|
|
||||||
# In most deployments, this is set to ./vitro-core, but internal developers may
|
|
||||||
# prefer to set it to ../vitro
|
|
||||||
# Examples:
|
|
||||||
# vitro.core.dir = ./vitro-core
|
|
||||||
# vitro.core.dir = ../vitro
|
|
||||||
# vitro.core.dir = /usr/local/vitro/trunk
|
|
||||||
vitro.core.dir = ../vitrotrunk
|
|
||||||
|
|
||||||
#
|
|
||||||
# The base install directory for your Tomcat server. The VIVO application
|
|
||||||
# will be deployed in the /webapps directory below this base.
|
|
||||||
#
|
|
||||||
tomcat.home = /usr/local/tomcat
|
|
||||||
|
|
||||||
#
|
|
||||||
# The name of the VIVO application. This will be used as the name of the
|
|
||||||
# subdirectory within your Tomcat server's /webapps directory. It also appears
|
|
||||||
# in the URL for the application. For example, http://my.vivo.server/vivo
|
|
||||||
#
|
|
||||||
webapp.name = vivo
|
|
||||||
|
|
||||||
#
|
|
||||||
# The location where the VIVO application will store uploaded files
|
|
||||||
# (usually images). You should arrange for these files to be backed up in some
|
|
||||||
# way.
|
|
||||||
#
|
|
||||||
upload.directory = /usr/local/vivo/data/flsdb2/uploads
|
|
||||||
|
|
||||||
#
|
|
||||||
# The location where the VIVO application will create its Lucene search
|
|
||||||
# index.
|
|
||||||
#
|
|
||||||
LuceneSetup.indexDir = /usr/local/vivo/data/flsdb2/luceneIndex
|
|
||||||
|
|
||||||
#
|
|
||||||
# SMTP host which the "Contact Us" form can use to send mail. If this is left
|
|
||||||
# empty, the "Contact Us" form will be disabled.
|
|
||||||
#
|
|
||||||
Vitro.smtpHost =
|
|
||||||
|
|
||||||
#
|
|
||||||
# The basic parameters for a database connection. Change the end of the
|
|
||||||
# URL to reflect your database name (if it is not "vitro"). Change the username
|
|
||||||
# and password to match the authorized database user you created. Increase the
|
|
||||||
# maximum size of the database connection pool if you need to serve a greater
|
|
||||||
# number of concurrent page requests.
|
|
||||||
#
|
|
||||||
VitroConnection.DataSource.url = jdbc:mysql://localhost/flsdb2
|
|
||||||
VitroConnection.DataSource.username = root
|
|
||||||
VitroConnection.DataSource.password = RedRed
|
|
||||||
|
|
||||||
#
|
|
||||||
# Parameters to change in order to use VIVO with a database other than
|
|
||||||
# MySQL.
|
|
||||||
#
|
|
||||||
VitroConnection.DataSource.dbtype = MySQL
|
|
||||||
VitroConnection.DataSource.driver = com.mysql.jdbc.Driver
|
|
||||||
VitroConnection.DataSource.validationQuery = SELECT 1
|
|
||||||
|
|
||||||
#
|
|
||||||
# The maximum size of the database connection pool. Increase this
|
|
||||||
# value to support a greater number of concurrent page requests
|
|
||||||
# with SDB. It is not necessary to adjust this value when using the
|
|
||||||
# RDB configuration.
|
|
||||||
#
|
|
||||||
VitroConnection.DataSource.pool.maxActive = 320
|
|
||||||
|
|
||||||
#
|
|
||||||
# The Jena triple store technology to use. SDB is Jena's SPARQL database;
|
|
||||||
# this setting allows RDF data to scale beyond the limits of the JVM heap.
|
|
||||||
# Set to RDB to use the older Jena RDB store with in-memory caching.
|
|
||||||
#
|
|
||||||
VitroConnection.DataSource.tripleStoreType = SDB
|
|
||||||
|
|
||||||
#
|
|
||||||
# The name of your first admin user for the VIVO application. The password for
|
|
||||||
# for this user is initially set to "defaultAdmin", but you will be asked to
|
|
||||||
# change the password the first time you login.
|
|
||||||
#
|
|
||||||
initialAdminUser = defaultAdmin
|
|
||||||
|
|
||||||
#
|
|
||||||
# How is a logged-in user associated with a particular Individual? One way is
|
|
||||||
# for the Individual to have a property whose value is the username of the user.
|
|
||||||
# This is the name of that property.
|
|
||||||
#
|
|
||||||
selfEditing.idMatchingProperty = http://vivo.mydomain.edu/ns#networkId
|
|
||||||
|
|
||||||
#
|
|
||||||
# If an external authentication system like Shibboleth or CUWebAuth is to be
|
|
||||||
# used, these properties say how the login button should be labeled, and which
|
|
||||||
# HTTP header will contain the user ID from the authentication system. If such
|
|
||||||
# as system is not to be used, leave these commented out. Consult the
|
|
||||||
# installation instructions for more details.
|
|
||||||
#
|
|
||||||
externalAuth.buttonText = Log in using BearCat Shibboleth
|
|
||||||
externalAuth.netIdHeaderName = remote_userID
|
|
|
@ -1,119 +0,0 @@
|
||||||
# -----------------------------------------------------------------------------
|
|
||||||
#
|
|
||||||
# VIVO deployment properties
|
|
||||||
#
|
|
||||||
# This file is provided as example.deploy.properties.
|
|
||||||
#
|
|
||||||
# Save a copy of this file as deploy.properties, and edit the properties as
|
|
||||||
# needed for your deployment.
|
|
||||||
#
|
|
||||||
# -----------------------------------------------------------------------------
|
|
||||||
|
|
||||||
#
|
|
||||||
# This namespace will be used when generating URIs for objects created in the
|
|
||||||
# editor. Change it to reflect your own domain. For example, Cornell's
|
|
||||||
# namespace is http://vivo.cornell.edu/individual/
|
|
||||||
#
|
|
||||||
# Note: it is essential that this namespace end with a trailing slash.
|
|
||||||
#
|
|
||||||
Vitro.defaultNamespace = http://vivo.cornell.edu/individual/
|
|
||||||
|
|
||||||
#
|
|
||||||
# Where is the Vitro core directory?
|
|
||||||
# In most deployments, this is set to ./vitro-core, but internal developers may
|
|
||||||
# prefer to set it to ../vitro
|
|
||||||
# Examples:
|
|
||||||
# vitro.core.dir = ./vitro-core
|
|
||||||
# vitro.core.dir = ../vitro
|
|
||||||
# vitro.core.dir = /usr/local/vitro/trunk
|
|
||||||
vitro.core.dir = ../vitrotrunk
|
|
||||||
|
|
||||||
#
|
|
||||||
# The base install directory for your Tomcat server. The VIVO application
|
|
||||||
# will be deployed in the /webapps directory below this base.
|
|
||||||
#
|
|
||||||
tomcat.home = /usr/local/tomcat
|
|
||||||
|
|
||||||
#
|
|
||||||
# The name of the VIVO application. This will be used as the name of the
|
|
||||||
# subdirectory within your Tomcat server's /webapps directory. It also appears
|
|
||||||
# in the URL for the application. For example, http://my.vivo.server/vivo
|
|
||||||
#
|
|
||||||
webapp.name = vivo
|
|
||||||
|
|
||||||
#
|
|
||||||
# The location where the VIVO application will store uploaded files
|
|
||||||
# (usually images). You should arrange for these files to be backed up in some
|
|
||||||
# way.
|
|
||||||
#
|
|
||||||
upload.directory = /usr/local/vivo/large/uploads
|
|
||||||
|
|
||||||
#
|
|
||||||
# The location where the VIVO application will create its Lucene search
|
|
||||||
# index.
|
|
||||||
#
|
|
||||||
LuceneSetup.indexDir = /usr/local/vivo/large/luceneIndex
|
|
||||||
|
|
||||||
#
|
|
||||||
# SMTP host which the "Contact Us" form can use to send mail. If this is left
|
|
||||||
# empty, the "Contact Us" form will be disabled.
|
|
||||||
#
|
|
||||||
Vitro.smtpHost =
|
|
||||||
|
|
||||||
#
|
|
||||||
# The basic parameters for a database connection. Change the end of the
|
|
||||||
# URL to reflect your database name (if it is not "vitro"). Change the username
|
|
||||||
# and password to match the authorized database user you created. Increase the
|
|
||||||
# maximum size of the database connection pool if you need to serve a greater
|
|
||||||
# number of concurrent page requests.
|
|
||||||
#
|
|
||||||
VitroConnection.DataSource.url = jdbc:mysql://localhost/vivotestinglarge
|
|
||||||
VitroConnection.DataSource.username = root
|
|
||||||
VitroConnection.DataSource.password = RedRed
|
|
||||||
|
|
||||||
#
|
|
||||||
# Parameters to change in order to use VIVO with a database other than
|
|
||||||
# MySQL.
|
|
||||||
#
|
|
||||||
VitroConnection.DataSource.dbtype = MySQL
|
|
||||||
VitroConnection.DataSource.driver = com.mysql.jdbc.Driver
|
|
||||||
VitroConnection.DataSource.validationQuery = SELECT 1
|
|
||||||
|
|
||||||
#
|
|
||||||
# The maximum size of the database connection pool. Increase this
|
|
||||||
# value to support a greater number of concurrent page requests
|
|
||||||
# with SDB. It is not necessary to adjust this value when using the
|
|
||||||
# RDB configuration.
|
|
||||||
#
|
|
||||||
VitroConnection.DataSource.pool.maxActive = 320
|
|
||||||
|
|
||||||
#
|
|
||||||
# The Jena triple store technology to use. SDB is Jena's SPARQL database;
|
|
||||||
# this setting allows RDF data to scale beyond the limits of the JVM heap.
|
|
||||||
# Set to RDB to use the older Jena RDB store with in-memory caching.
|
|
||||||
#
|
|
||||||
VitroConnection.DataSource.tripleStoreType =SDB
|
|
||||||
|
|
||||||
#
|
|
||||||
# The name of your first admin user for the VIVO application. The password for
|
|
||||||
# for this user is initially set to "defaultAdmin", but you will be asked to
|
|
||||||
# change the password the first time you login.
|
|
||||||
#
|
|
||||||
initialAdminUser = defaultAdmin
|
|
||||||
|
|
||||||
#
|
|
||||||
# How is a logged-in user associated with a particular Individual? One way is
|
|
||||||
# for the Individual to have a property whose value is the username of the user.
|
|
||||||
# This is the name of that property.
|
|
||||||
#
|
|
||||||
selfEditing.idMatchingProperty = http://vivo.mydomain.edu/ns#networkId
|
|
||||||
|
|
||||||
#
|
|
||||||
# If an external authentication system like Shibboleth or CUWebAuth is to be
|
|
||||||
# used, these properties say how the login button should be labeled, and which
|
|
||||||
# HTTP header will contain the user ID from the authentication system. If such
|
|
||||||
# as system is not to be used, leave these commented out. Consult the
|
|
||||||
# installation instructions for more details.
|
|
||||||
#
|
|
||||||
externalAuth.buttonText = Log in using BearCat Shibboleth
|
|
||||||
externalAuth.netIdHeaderName = remote_userID
|
|
|
@ -1,37 +0,0 @@
|
||||||
####### Deploy properties #########################################
|
|
||||||
|
|
||||||
vitro.core.dir = ../vitrotrunk
|
|
||||||
|
|
||||||
tomcat.home = /usr/local/apache-tomcat-7.0.11
|
|
||||||
webapp.name = vivo
|
|
||||||
vitro.local.solr.url = http://localhost:8090/vivosolr
|
|
||||||
|
|
||||||
vitro.local.solr.ipaddress.mask = 127\.0\.0\.1,[0:]+:1[^:]*,
|
|
||||||
|
|
||||||
vitro.home.directory = /usr/local/vivo/vitrodb
|
|
||||||
|
|
||||||
|
|
||||||
####### Vivo configuration properties #############################
|
|
||||||
|
|
||||||
Vitro.defaultNamespace = http://localhost:8080/vivo/
|
|
||||||
|
|
||||||
email.smtpHost = smtp.mydomain.edu
|
|
||||||
email.replyTo = vivoAdmin@mydomain.edu
|
|
||||||
|
|
||||||
VitroConnection.DataSource.url = jdbc:mysql://localhost/vitrodb
|
|
||||||
VitroConnection.DataSource.username = root
|
|
||||||
VitroConnection.DataSource.password = RedRed
|
|
||||||
|
|
||||||
VitroConnection.DataSource.pool.maxActive = 40
|
|
||||||
VitroConnection.DataSource.pool.maxIdle = 10
|
|
||||||
VitroConnection.DataSource.dbtype = MySQL
|
|
||||||
VitroConnection.DataSource.driver = com.mysql.jdbc.Driver
|
|
||||||
VitroConnection.DataSource.validationQuery = SELECT 1
|
|
||||||
|
|
||||||
rootUser.emailAddress = root@root.com
|
|
||||||
|
|
||||||
selfEditing.idMatchingProperty = http://vivo.mydomain.edu/ns#networkId
|
|
||||||
|
|
||||||
visualization.temporal = enabled
|
|
||||||
|
|
||||||
Vitro.reconcile.defaultTypeList = http://vivoweb.org/ontology/core#Role, core:Role; http://vivoweb.org/ontology/core#AcademicDegree, core:Academic Degree; http://purl.org/NET/c4dm/event.owl#Event, event:Event; http://vivoweb.org/ontology/core#Agreement, core:Agreement; http://vivoweb.org/ontology/core#Location, core:Location; http://xmlns.com/foaf/0.1/Organization, foaf:Organization; http://xmlns.com/foaf/0.1/Person, foaf:Person; http://vivoweb.org/ontology/core#InformationResource, core:Information Resource
|
|
|
@ -1,34 +0,0 @@
|
||||||
#Environment.build=development
|
|
||||||
|
|
||||||
Vitro.defaultNamespace = http://caruso-laptop.mannlib.cornell.edu:8080/vivo/individual/
|
|
||||||
|
|
||||||
vitro.core.dir = ../vitrotrunk
|
|
||||||
tomcat.home = /usr/local/tomcat
|
|
||||||
|
|
||||||
webapp.name = vivo
|
|
||||||
|
|
||||||
vitro.local.solr.url = http://localhost:8080/vivosolr
|
|
||||||
|
|
||||||
vitro.home.directory = /usr/local/vivo/data
|
|
||||||
|
|
||||||
email.smtpHost = smtp.my.domain.edu
|
|
||||||
email.replyTo = vivoAdmin@my.domain.edu
|
|
||||||
|
|
||||||
VitroConnection.DataSource.url = jdbc:mysql://localhost/vivotesting
|
|
||||||
VitroConnection.DataSource.username = root
|
|
||||||
VitroConnection.DataSource.password = RedRed
|
|
||||||
|
|
||||||
VitroConnection.DataSource.pool.maxActive = 40
|
|
||||||
VitroConnection.DataSource.pool.maxIdle = 10
|
|
||||||
VitroConnection.DataSource.dbtype = MySQL
|
|
||||||
VitroConnection.DataSource.driver = com.mysql.jdbc.Driver
|
|
||||||
VitroConnection.DataSource.validationQuery = SELECT 1
|
|
||||||
|
|
||||||
rootUser.emailAddress = vivo_root@mydomain.edu
|
|
||||||
|
|
||||||
selfEditing.idMatchingProperty = http://vivo.mydomain.edu/ns#networkId
|
|
||||||
|
|
||||||
externalAuth.buttonText = Log in using BearCat Shibboleth
|
|
||||||
externalAuth.netIdHeaderName = remote_userID
|
|
||||||
|
|
||||||
Vitro.reconcile.defaultTypeList = http://vivoweb.org/ontology/core#Role, core:Role; http://vivoweb.org/ontology/core#AcademicDegree, core:Academic Degree; http://purl.org/NET/c4dm/event.owl#Event, event:Event; http://vivoweb.org/ontology/core#Agreement, core:Agreement; http://vivoweb.org/ontology/core#Location, core:Location; http://xmlns.com/foaf/0.1/Organization, foaf:Organization; http://xmlns.com/foaf/0.1/Person, foaf:Person; http://vivoweb.org/ontology/core#InformationResource, core:Information Resource
|
|
|
@ -1,118 +0,0 @@
|
||||||
# -----------------------------------------------------------------------------
|
|
||||||
#
|
|
||||||
# VIVO deployment properties
|
|
||||||
#
|
|
||||||
# This file is provided as example.deploy.properties.
|
|
||||||
#
|
|
||||||
# Save a copy of this file as deploy.properties, and edit the properties as
|
|
||||||
# needed for your deployment.
|
|
||||||
#
|
|
||||||
# -----------------------------------------------------------------------------
|
|
||||||
|
|
||||||
#
|
|
||||||
# This namespace will be used when generating URIs for objects created in the
|
|
||||||
# editor. Change it to reflect your own domain. For example, Cornell's
|
|
||||||
# namespace is http://vivo.cornell.edu/individual/
|
|
||||||
#
|
|
||||||
# Note: it is essential that this namespace end with a trailing slash.
|
|
||||||
#
|
|
||||||
Vitro.defaultNamespace = http://caruso-laptop.mannlib.cornell.edu:8090/vivo/individual/
|
|
||||||
|
|
||||||
vitro.home.directory = /usr/local/vivo/vivoAiHome
|
|
||||||
|
|
||||||
vitro.local.solr.url = http://localhost:8080/vivosolr
|
|
||||||
|
|
||||||
rootUser.emailAddress = bob@example.com
|
|
||||||
#
|
|
||||||
# Where is the Vitro core directory?
|
|
||||||
# In most deployments, this is set to ./vitro-core, but internal developers may
|
|
||||||
# prefer to set it to ../vitro
|
|
||||||
# Examples:
|
|
||||||
# vitro.core.dir = ./vitro-core
|
|
||||||
# vitro.core.dir = ../vitro
|
|
||||||
# vitro.core.dir = /usr/local/vitro/trunk
|
|
||||||
vitro.core.dir = ../vitrotrunk
|
|
||||||
|
|
||||||
#
|
|
||||||
# The base install directory for your Tomcat server. The VIVO application
|
|
||||||
# will be deployed in the /webapps directory below this base.
|
|
||||||
#
|
|
||||||
tomcat.home = /usr/local/tomcat
|
|
||||||
|
|
||||||
#
|
|
||||||
# The name of the VIVO application. This will be used as the name of the
|
|
||||||
# subdirectory within your Tomcat server's /webapps directory. It also appears
|
|
||||||
# in the URL for the application. For example, http://my.vivo.server/vivo
|
|
||||||
#
|
|
||||||
webapp.name = vivo
|
|
||||||
|
|
||||||
#
|
|
||||||
# The location where the VIVO application will store uploaded files
|
|
||||||
# (usually images). You should arrange for these files to be backed up in some
|
|
||||||
# way.
|
|
||||||
#
|
|
||||||
upload.directory = /usr/local/vivo/data/uploads
|
|
||||||
|
|
||||||
#
|
|
||||||
# SMTP host which the "Contact Us" form can use to send mail. If this is left
|
|
||||||
# empty, the "Contact Us" form will be disabled.
|
|
||||||
#
|
|
||||||
Vitro.smtpHost =
|
|
||||||
|
|
||||||
#
|
|
||||||
# The basic parameters for a database connection. Change the end of the
|
|
||||||
# URL to reflect your database name (if it is not "vitro"). Change the username
|
|
||||||
# and password to match the authorized database user you created. Increase the
|
|
||||||
# maximum size of the database connection pool if you need to serve a greater
|
|
||||||
# number of concurrent page requests.
|
|
||||||
#
|
|
||||||
VitroConnection.DataSource.url = jdbc:mysql://localhost/vivoAi
|
|
||||||
VitroConnection.DataSource.username = root
|
|
||||||
VitroConnection.DataSource.password = RedRed
|
|
||||||
|
|
||||||
#
|
|
||||||
# Parameters to change in order to use VIVO with a database other than
|
|
||||||
# MySQL.
|
|
||||||
#
|
|
||||||
VitroConnection.DataSource.dbtype = MySQL
|
|
||||||
VitroConnection.DataSource.driver = com.mysql.jdbc.Driver
|
|
||||||
VitroConnection.DataSource.validationQuery = SELECT 1
|
|
||||||
|
|
||||||
#
|
|
||||||
# The maximum size of the database connection pool. Increase this
|
|
||||||
# value to support a greater number of concurrent page requests
|
|
||||||
# with SDB. It is not necessary to adjust this value when using the
|
|
||||||
# RDB configuration.
|
|
||||||
#
|
|
||||||
VitroConnection.DataSource.pool.maxActive = 320
|
|
||||||
|
|
||||||
#
|
|
||||||
# The Jena triple store technology to use. SDB is Jena's SPARQL database;
|
|
||||||
# this setting allows RDF data to scale beyond the limits of the JVM heap.
|
|
||||||
# Set to RDB to use the older Jena RDB store with in-memory caching.
|
|
||||||
#
|
|
||||||
VitroConnection.DataSource.tripleStoreType = SDB
|
|
||||||
|
|
||||||
#
|
|
||||||
# The name of your first admin user for the VIVO application. The password for
|
|
||||||
# for this user is initially set to "defaultAdmin", but you will be asked to
|
|
||||||
# change the password the first time you login.
|
|
||||||
#
|
|
||||||
initialAdminUser = defaultAdmin
|
|
||||||
|
|
||||||
#
|
|
||||||
# How is a logged-in user associated with a particular Individual? One way is
|
|
||||||
# for the Individual to have a property whose value is the username of the user.
|
|
||||||
# This is the name of that property.
|
|
||||||
#
|
|
||||||
selfEditing.idMatchingProperty = http://vivo.mydomain.edu/ns#networkId
|
|
||||||
|
|
||||||
#
|
|
||||||
# If an external authentication system like Shibboleth or CUWebAuth is to be
|
|
||||||
# used, these properties say how the login button should be labeled, and which
|
|
||||||
# HTTP header will contain the user ID from the authentication system. If such
|
|
||||||
# as system is not to be used, leave these commented out. Consult the
|
|
||||||
# installation instructions for more details.
|
|
||||||
#
|
|
||||||
externalAuth.buttonText = Log in using BearCat Shibboleth
|
|
||||||
externalAuth.netIdHeaderName = remote_userID
|
|
|
@ -1,120 +0,0 @@
|
||||||
# -----------------------------------------------------------------------------
|
|
||||||
#
|
|
||||||
# VIVO deployment properties
|
|
||||||
#
|
|
||||||
# This file is provided as example.deploy.properties.
|
|
||||||
#
|
|
||||||
# Save a copy of this file as deploy.properties, and edit the properties as
|
|
||||||
# needed for your deployment.
|
|
||||||
#
|
|
||||||
# -----------------------------------------------------------------------------
|
|
||||||
|
|
||||||
#
|
|
||||||
# This namespace will be used when generating URIs for objects created in the
|
|
||||||
# editor. Change it to reflect your own domain. For example, Cornell's
|
|
||||||
# namespace is http://vivo.cornell.edu/individual/
|
|
||||||
#
|
|
||||||
# Note: it is essential that this namespace end with a trailing slash.
|
|
||||||
#
|
|
||||||
Vitro.defaultNamespace = http://caruso-laptop.mannlib.cornell.edu:8080/vivo/individual/
|
|
||||||
|
|
||||||
vitro.home.directory = /usr/local/vivo/vivojira
|
|
||||||
#
|
|
||||||
# Where is the Vitro core directory?
|
|
||||||
# In most deployments, this is set to ./vitro-core, but internal developers may
|
|
||||||
# prefer to set it to ../vitro
|
|
||||||
# Examples:
|
|
||||||
# vitro.core.dir = ./vitro-core
|
|
||||||
# vitro.core.dir = ../vitro
|
|
||||||
# vitro.core.dir = /usr/local/vitro/trunk
|
|
||||||
vitro.core.dir = ../vitrotrunk
|
|
||||||
|
|
||||||
#
|
|
||||||
# The base install directory for your Tomcat server. The VIVO application
|
|
||||||
# will be deployed in the /webapps directory below this base.
|
|
||||||
#
|
|
||||||
tomcat.home = /usr/local/tomcat
|
|
||||||
|
|
||||||
#
|
|
||||||
# The name of the VIVO application. This will be used as the name of the
|
|
||||||
# subdirectory within your Tomcat server's /webapps directory. It also appears
|
|
||||||
# in the URL for the application. For example, http://my.vivo.server/vivo
|
|
||||||
#
|
|
||||||
webapp.name = vivo
|
|
||||||
|
|
||||||
#
|
|
||||||
# The location where the VIVO application will store uploaded files
|
|
||||||
# (usually images). You should arrange for these files to be backed up in some
|
|
||||||
# way.
|
|
||||||
#
|
|
||||||
upload.directory = /usr/local/vivo/vivojira/uploads
|
|
||||||
|
|
||||||
#
|
|
||||||
# The location where the VIVO application will create its Lucene search
|
|
||||||
# index.
|
|
||||||
#
|
|
||||||
LuceneSetup.indexDir = /usr/local/vivo/vivojira/luceneIndex
|
|
||||||
|
|
||||||
#
|
|
||||||
# SMTP host which the "Contact Us" form can use to send mail. If this is left
|
|
||||||
# empty, the "Contact Us" form will be disabled.
|
|
||||||
#
|
|
||||||
Vitro.smtpHost =
|
|
||||||
|
|
||||||
#
|
|
||||||
# The basic parameters for a database connection. Change the end of the
|
|
||||||
# URL to reflect your database name (if it is not "vitro"). Change the username
|
|
||||||
# and password to match the authorized database user you created. Increase the
|
|
||||||
# maximum size of the database connection pool if you need to serve a greater
|
|
||||||
# number of concurrent page requests.
|
|
||||||
#
|
|
||||||
VitroConnection.DataSource.url = jdbc:mysql://localhost/vivojira
|
|
||||||
VitroConnection.DataSource.username = root
|
|
||||||
VitroConnection.DataSource.password = RedRed
|
|
||||||
|
|
||||||
#
|
|
||||||
# Parameters to change in order to use VIVO with a database other than
|
|
||||||
# MySQL.
|
|
||||||
#
|
|
||||||
VitroConnection.DataSource.dbtype = MySQL
|
|
||||||
VitroConnection.DataSource.driver = com.mysql.jdbc.Driver
|
|
||||||
VitroConnection.DataSource.validationQuery = SELECT 1
|
|
||||||
|
|
||||||
#
|
|
||||||
# The maximum size of the database connection pool. Increase this
|
|
||||||
# value to support a greater number of concurrent page requests
|
|
||||||
# with SDB. It is not necessary to adjust this value when using the
|
|
||||||
# RDB configuration.
|
|
||||||
#
|
|
||||||
VitroConnection.DataSource.pool.maxActive = 320
|
|
||||||
|
|
||||||
#
|
|
||||||
# The Jena triple store technology to use. SDB is Jena's SPARQL database;
|
|
||||||
# this setting allows RDF data to scale beyond the limits of the JVM heap.
|
|
||||||
# Set to RDB to use the older Jena RDB store with in-memory caching.
|
|
||||||
#
|
|
||||||
VitroConnection.DataSource.tripleStoreType =RDB
|
|
||||||
|
|
||||||
#
|
|
||||||
# The name of your first admin user for the VIVO application. The password for
|
|
||||||
# for this user is initially set to "defaultAdmin", but you will be asked to
|
|
||||||
# change the password the first time you login.
|
|
||||||
#
|
|
||||||
initialAdminUser = defaultAdmin
|
|
||||||
|
|
||||||
#
|
|
||||||
# How is a logged-in user associated with a particular Individual? One way is
|
|
||||||
# for the Individual to have a property whose value is the username of the user.
|
|
||||||
# This is the name of that property.
|
|
||||||
#
|
|
||||||
selfEditing.idMatchingProperty = http://vivo.mydomain.edu/ns#networkId
|
|
||||||
|
|
||||||
#
|
|
||||||
# If an external authentication system like Shibboleth or CUWebAuth is to be
|
|
||||||
# used, these properties say how the login button should be labeled, and which
|
|
||||||
# HTTP header will contain the user ID from the authentication system. If such
|
|
||||||
# as system is not to be used, leave these commented out. Consult the
|
|
||||||
# installation instructions for more details.
|
|
||||||
#
|
|
||||||
externalAuth.buttonText = Log in using BearCat Shibboleth
|
|
||||||
externalAuth.netIdHeaderName = remote_userID
|
|
|
@ -1,120 +0,0 @@
|
||||||
# -----------------------------------------------------------------------------
|
|
||||||
#
|
|
||||||
# VIVO deployment properties
|
|
||||||
#
|
|
||||||
# This file is provided as example.deploy.properties.
|
|
||||||
#
|
|
||||||
# Save a copy of this file as deploy.properties, and edit the properties as
|
|
||||||
# needed for your deployment.
|
|
||||||
#
|
|
||||||
# -----------------------------------------------------------------------------
|
|
||||||
|
|
||||||
#
|
|
||||||
# This namespace will be used when generating URIs for objects created in the
|
|
||||||
# editor. Change it to reflect your own domain. For example, Cornell's
|
|
||||||
# namespace is http://vivo.cornell.edu/individual/
|
|
||||||
#
|
|
||||||
# Note: it is essential that this namespace end with a trailing slash.
|
|
||||||
#
|
|
||||||
#Vitro.defaultNamespace = http://vivo.mydomain.edu/individual/
|
|
||||||
Vitro.defaultNamespace = http://vivo.med.cornell.edu/individual/
|
|
||||||
|
|
||||||
#
|
|
||||||
# Where is the Vitro core directory?
|
|
||||||
# In most deployments, this is set to ./vitro-core, but internal developers may
|
|
||||||
# prefer to set it to ../vitro
|
|
||||||
# Examples:
|
|
||||||
# vitro.core.dir = ./vitro-core
|
|
||||||
# vitro.core.dir = ../vitro
|
|
||||||
# vitro.core.dir = /usr/local/vitro/trunk
|
|
||||||
vitro.core.dir = ../vitrotrunk
|
|
||||||
|
|
||||||
#
|
|
||||||
# The base install directory for your Tomcat server. The VIVO application
|
|
||||||
# will be deployed in the /webapps directory below this base.
|
|
||||||
#
|
|
||||||
tomcat.home = /usr/local/tomcat
|
|
||||||
|
|
||||||
#
|
|
||||||
# The name of the VIVO application. This will be used as the name of the
|
|
||||||
# subdirectory within your Tomcat server's /webapps directory. It also appears
|
|
||||||
# in the URL for the application. For example, http://my.vivo.server/vivo
|
|
||||||
#
|
|
||||||
webapp.name = vivo
|
|
||||||
|
|
||||||
#
|
|
||||||
# The location where the VIVO application will store uploaded files
|
|
||||||
# (usually images). You should arrange for these files to be backed up in some
|
|
||||||
# way.
|
|
||||||
#
|
|
||||||
upload.directory = /usr/local/vivo/wcmcrdb/data/uploads
|
|
||||||
|
|
||||||
#
|
|
||||||
# The location where the VIVO application will create its Lucene search
|
|
||||||
# index.
|
|
||||||
#
|
|
||||||
LuceneSetup.indexDir = /usr/local/vivo/wcmcrdb/data/luceneIndex
|
|
||||||
|
|
||||||
#
|
|
||||||
# SMTP host which the "Contact Us" form can use to send mail. If this is left
|
|
||||||
# empty, the "Contact Us" form will be disabled.
|
|
||||||
#
|
|
||||||
Vitro.smtpHost =
|
|
||||||
|
|
||||||
#
|
|
||||||
# The basic parameters for a database connection. Change the end of the
|
|
||||||
# URL to reflect your database name (if it is not "vitro"). Change the username
|
|
||||||
# and password to match the authorized database user you created. Increase the
|
|
||||||
# maximum size of the database connection pool if you need to serve a greater
|
|
||||||
# number of concurrent page requests.
|
|
||||||
#
|
|
||||||
VitroConnection.DataSource.url = jdbc:mysql://localhost/wcmcrdb
|
|
||||||
VitroConnection.DataSource.username = root
|
|
||||||
VitroConnection.DataSource.password = RedRed
|
|
||||||
|
|
||||||
#
|
|
||||||
# Parameters to change in order to use VIVO with a database other than
|
|
||||||
# MySQL.
|
|
||||||
#
|
|
||||||
VitroConnection.DataSource.dbtype = MySQL
|
|
||||||
VitroConnection.DataSource.driver = com.mysql.jdbc.Driver
|
|
||||||
VitroConnection.DataSource.validationQuery = SELECT 1
|
|
||||||
|
|
||||||
#
|
|
||||||
# The maximum size of the database connection pool. Increase this
|
|
||||||
# value to support a greater number of concurrent page requests
|
|
||||||
# with SDB. It is not necessary to adjust this value when using the
|
|
||||||
# RDB configuration.
|
|
||||||
#
|
|
||||||
VitroConnection.DataSource.pool.maxActive = 320
|
|
||||||
|
|
||||||
#
|
|
||||||
# The Jena triple store technology to use. SDB is Jena's SPARQL database;
|
|
||||||
# this setting allows RDF data to scale beyond the limits of the JVM heap.
|
|
||||||
# Set to RDB to use the older Jena RDB store with in-memory caching.
|
|
||||||
#
|
|
||||||
VitroConnection.DataSource.tripleStoreType = RDB
|
|
||||||
#
|
|
||||||
# The name of your first admin user for the VIVO application. The password for
|
|
||||||
# for this user is initially set to "defaultAdmin", but you will be asked to
|
|
||||||
# change the password the first time you login.
|
|
||||||
#
|
|
||||||
|
|
||||||
initialAdminUser = defaultAdmin
|
|
||||||
|
|
||||||
#
|
|
||||||
# How is a logged-in user associated with a particular Individual? One way is
|
|
||||||
# for the Individual to have a property whose value is the username of the user.
|
|
||||||
# This is the name of that property.
|
|
||||||
#
|
|
||||||
selfEditing.idMatchingProperty = http://vivo.mydomain.edu/ns#networkId
|
|
||||||
|
|
||||||
#
|
|
||||||
# If an external authentication system like Shibboleth or CUWebAuth is to be
|
|
||||||
# used, these properties say how the login button should be labeled, and which
|
|
||||||
# HTTP header will contain the user ID from the authentication system. If such
|
|
||||||
# as system is not to be used, leave these commented out. Consult the
|
|
||||||
# installation instructions for more details.
|
|
||||||
#
|
|
||||||
externalAuth.buttonText = Bogus Login
|
|
||||||
#externalAuth.netIdHeaderName = remote_userID
|
|
|
@ -1,121 +0,0 @@
|
||||||
# -----------------------------------------------------------------------------
|
|
||||||
#
|
|
||||||
# VIVO deployment properties
|
|
||||||
#
|
|
||||||
# This file is provided as example.deploy.properties.
|
|
||||||
#
|
|
||||||
# Save a copy of this file as deploy.properties, and edit the properties as
|
|
||||||
# needed for your deployment.
|
|
||||||
#
|
|
||||||
# -----------------------------------------------------------------------------
|
|
||||||
|
|
||||||
#
|
|
||||||
# This namespace will be used when generating URIs for objects created in the
|
|
||||||
# editor. Change it to reflect your own domain. For example, Cornell's
|
|
||||||
# namespace is http://vivo.cornell.edu/individual/
|
|
||||||
#
|
|
||||||
# Note: it is essential that this namespace end with a trailing slash.
|
|
||||||
#
|
|
||||||
#Vitro.defaultNamespace = http://vivo.mydomain.edu/individual/
|
|
||||||
Vitro.defaultNamespace = http://vivo.med.cornell.edu/individual/
|
|
||||||
|
|
||||||
#
|
|
||||||
# Where is the Vitro core directory?
|
|
||||||
# In most deployments, this is set to ./vitro-core, but internal developers may
|
|
||||||
# prefer to set it to ../vitro
|
|
||||||
# Examples:
|
|
||||||
# vitro.core.dir = ./vitro-core
|
|
||||||
# vitro.core.dir = ../vitro
|
|
||||||
# vitro.core.dir = /usr/local/vitro/trunk
|
|
||||||
vitro.core.dir = ../vitrotrunk
|
|
||||||
|
|
||||||
#
|
|
||||||
# The base install directory for your Tomcat server. The VIVO application
|
|
||||||
# will be deployed in the /webapps directory below this base.
|
|
||||||
#
|
|
||||||
tomcat.home = /usr/local/tomcat
|
|
||||||
|
|
||||||
#
|
|
||||||
# The name of the VIVO application. This will be used as the name of the
|
|
||||||
# subdirectory within your Tomcat server's /webapps directory. It also appears
|
|
||||||
# in the URL for the application. For example, http://my.vivo.server/vivo
|
|
||||||
#
|
|
||||||
webapp.name = vivo
|
|
||||||
|
|
||||||
#
|
|
||||||
# The location where the VIVO application will store uploaded files
|
|
||||||
# (usually images). You should arrange for these files to be backed up in some
|
|
||||||
# way.
|
|
||||||
#
|
|
||||||
upload.directory = /usr/local/vivo/wcmcsdb/data/uploads
|
|
||||||
|
|
||||||
#
|
|
||||||
# The location where the VIVO application will create its Lucene search
|
|
||||||
# index.
|
|
||||||
#
|
|
||||||
LuceneSetup.indexDir = /usr/local/vivo/wcmcsdb/data/luceneIndex
|
|
||||||
|
|
||||||
#
|
|
||||||
# SMTP host which the "Contact Us" form can use to send mail. If this is left
|
|
||||||
# empty, the "Contact Us" form will be disabled.
|
|
||||||
#
|
|
||||||
Vitro.smtpHost =
|
|
||||||
|
|
||||||
#
|
|
||||||
# The basic parameters for a database connection. Change the end of the
|
|
||||||
# URL to reflect your database name (if it is not "vitro"). Change the username
|
|
||||||
# and password to match the authorized database user you created. Increase the
|
|
||||||
# maximum size of the database connection pool if you need to serve a greater
|
|
||||||
# number of concurrent page requests.
|
|
||||||
#
|
|
||||||
VitroConnection.DataSource.url = jdbc:mysql://localhost/wcmc
|
|
||||||
VitroConnection.DataSource.username = root
|
|
||||||
VitroConnection.DataSource.password = RedRed
|
|
||||||
|
|
||||||
#
|
|
||||||
# Parameters to change in order to use VIVO with a database other than
|
|
||||||
# MySQL.
|
|
||||||
#
|
|
||||||
VitroConnection.DataSource.dbtype = MySQL
|
|
||||||
VitroConnection.DataSource.driver = com.mysql.jdbc.Driver
|
|
||||||
VitroConnection.DataSource.validationQuery = SELECT 1
|
|
||||||
|
|
||||||
#
|
|
||||||
# The maximum size of the database connection pool. Increase this
|
|
||||||
# value to support a greater number of concurrent page requests
|
|
||||||
# with SDB. It is not necessary to adjust this value when using the
|
|
||||||
# RDB configuration.
|
|
||||||
#
|
|
||||||
VitroConnection.DataSource.pool.maxActive = 320
|
|
||||||
|
|
||||||
#
|
|
||||||
# The Jena triple store technology to use. SDB is Jena's SPARQL database;
|
|
||||||
# this setting allows RDF data to scale beyond the limits of the JVM heap.
|
|
||||||
# Set to RDB to use the older Jena RDB store with in-memory caching.
|
|
||||||
#
|
|
||||||
VitroConnection.DataSource.tripleStoreType = SDB
|
|
||||||
|
|
||||||
#
|
|
||||||
# The name of your first admin user for the VIVO application. The password for
|
|
||||||
# for this user is initially set to "defaultAdmin", but you will be asked to
|
|
||||||
# change the password the first time you login.
|
|
||||||
#
|
|
||||||
|
|
||||||
initialAdminUser = defaultAdmin
|
|
||||||
|
|
||||||
#
|
|
||||||
# How is a logged-in user associated with a particular Individual? One way is
|
|
||||||
# for the Individual to have a property whose value is the username of the user.
|
|
||||||
# This is the name of that property.
|
|
||||||
#
|
|
||||||
selfEditing.idMatchingProperty = http://vivo.mydomain.edu/ns#networkId
|
|
||||||
|
|
||||||
#
|
|
||||||
# If an external authentication system like Shibboleth or CUWebAuth is to be
|
|
||||||
# used, these properties say how the login button should be labeled, and which
|
|
||||||
# HTTP header will contain the user ID from the authentication system. If such
|
|
||||||
# as system is not to be used, leave these commented out. Consult the
|
|
||||||
# installation instructions for more details.
|
|
||||||
#
|
|
||||||
externalAuth.buttonText = Bogus Login
|
|
||||||
#externalAuth.netIdHeaderName = remote_userID
|
|
Loading…
Add table
Add a link
Reference in a new issue