client/servlet/conf/connection.properties.in

Code
Comments
Other
Rev Date Author Line
4542 07 Feb 14 olle 1 # $Id: connection.properties.in 2597 2014-02-05 11:21:41Z olle $
4542 07 Feb 14 olle 2
4542 07 Feb 14 olle 3 # Copyright (C) 2014 Fredrik Levander, Olle Mansson
4542 07 Feb 14 olle 4
4542 07 Feb 14 olle 5 # This file is part of Proteios
4542 07 Feb 14 olle 6 # Available at http://www.proteios.org/
4542 07 Feb 14 olle 7
4542 07 Feb 14 olle 8 # Proteios is free software; you can redistribute it and/or modify it
4542 07 Feb 14 olle 9 # under the terms of the GNU General Public License as published by
4542 07 Feb 14 olle 10 # the Free Software Foundation; either version 2 of the License, or
4542 07 Feb 14 olle 11 # (at your option) any later version.
4542 07 Feb 14 olle 12
4542 07 Feb 14 olle 13 # Proteios is distributed in the hope that it will be useful, but
4542 07 Feb 14 olle 14 # WITHOUT ANY WARRANTY; without even the implied warranty of
4542 07 Feb 14 olle 15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
4542 07 Feb 14 olle 16 # General Public License for more details.
4542 07 Feb 14 olle 17
4542 07 Feb 14 olle 18 # You should have received a copy of the GNU General Public License
4542 07 Feb 14 olle 19 # along with this program; if not, write to the Free Software
4542 07 Feb 14 olle 20 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
4542 07 Feb 14 olle 21 # 02111-1307, USA.
4542 07 Feb 14 olle 22
4542 07 Feb 14 olle 23 # Copy this file to connection.properties and make necessary configuration 
4542 07 Feb 14 olle 24 # before starting Proteios.
4542 07 Feb 14 olle 25  
4542 07 Feb 14 olle 26 #
4542 07 Feb 14 olle 27 # Settings for accessing files using SSL (Secure Sockets Layer) connection
4542 07 Feb 14 olle 28 #
4542 07 Feb 14 olle 29 # Default settings for BILS project:
4542 07 Feb 14 olle 30 # (Sensitive information has been exchanged for text in <> brackets.)
4542 07 Feb 14 olle 31 # If keyStorePassword is missing, an attempt is made to read
4542 07 Feb 14 olle 32 # it from cert.passFile.
4542 07 Feb 14 olle 33 #
4542 07 Feb 14 olle 34 # cert.alias = proteios2
4542 07 Feb 14 olle 35 # cert.passFile = /home/bils/.p12pw
4542 07 Feb 14 olle 36 # javax.net.ssl.keyStore = /home/bils/bilsuser-cert.p12
4542 07 Feb 14 olle 37 # javax.net.ssl.keyStorePassword = <PASSWORD-1>
4542 07 Feb 14 olle 38 # javax.net.ssl.trustStore = /home/bils/truststore.jks
4542 07 Feb 14 olle 39 # javax.net.ssl.trustStorePassword = <PASSWORD-2>
4542 07 Feb 14 olle 40 #
4542 07 Feb 14 olle 41 cert.alias =
4542 07 Feb 14 olle 42 cert.passFile =
4542 07 Feb 14 olle 43 javax.net.ssl.keyStore =
4542 07 Feb 14 olle 44 javax.net.ssl.keyStorePassword =
4542 07 Feb 14 olle 45 javax.net.ssl.trustStore =
4542 07 Feb 14 olle 46 javax.net.ssl.trustStorePassword =
4542 07 Feb 14 olle 47
4542 07 Feb 14 olle 48 #
4542 07 Feb 14 olle 49 # Settings for redirects for local cache when accessing files via URL
4542 07 Feb 14 olle 50 #
4542 07 Feb 14 olle 51 # If a file URL starts with a listed 'source' path, the path with the
4542 07 Feb 14 olle 52 # source path exchanged for the corresponding target path is tried first.
4551 25 Mar 14 fredrik 53 # For URLs requiring authentication it can be written into the URL:
4551 25 Mar 14 fredrik 54 # https://USERNAME:PASSWORD@www.example.org/
4542 07 Feb 14 olle 55 #
4551 25 Mar 14 fredrik 56 # Example settings for BILS project:
4542 07 Feb 14 olle 57 #
4542 07 Feb 14 olle 58 # alternate.location.source.1 = https://srm.swegrid.se/snic/bils/lu_proteomics/external/raw/
4551 25 Mar 14 fredrik 59 # alternate.location.target.1 = http://user:pass@local.storage.lu.se/external/
4542 07 Feb 14 olle 60 # alternate.location.source.2 = https://srm.swegrid.se/snic/bils/lu_proteomics/external/mzml/
4542 07 Feb 14 olle 61 # alternate.location.target.2 = http://synology.immunoprot.lth.se/external/mzml/
4542 07 Feb 14 olle 62 #
4542 07 Feb 14 olle 63 alternate.location.source.1 =
4542 07 Feb 14 olle 64 alternate.location.target.1 =
4542 07 Feb 14 olle 65 alternate.location.source.2 =
4542 07 Feb 14 olle 66 alternate.location.target.2 =
4542 07 Feb 14 olle 67
4554 28 Apr 14 fredrik 68 #
4554 28 Apr 14 fredrik 69 # Settings for SRM client. Used to publish files on Swestore
4554 28 Apr 14 fredrik 70 # Path to script for creating proxy:
4554 28 Apr 14 fredrik 71 # create proxy = /usr/share/tomcat6/create_proxy.sh
4554 28 Apr 14 fredrik 72 create.proxy = /usr/share/tomcat/create_proxy.sh
4554 28 Apr 14 fredrik 73 #
4554 28 Apr 14 fredrik 74 # srm-set-permissions command. 
4554 28 Apr 14 fredrik 75 # command in path:
4554 28 Apr 14 fredrik 76 srm.set.permissions = srm-set-permissions  
4554 28 Apr 14 fredrik 77 # alternative:
4554 28 Apr 14 fredrik 78 # srm.set.permissions = /opt/d-cache/srm/bin/srm-set-permissions
4554 28 Apr 14 fredrik 79
4554 28 Apr 14 fredrik 80
4554 28 Apr 14 fredrik 81
4554 28 Apr 14 fredrik 82