Skip to content
This repository has been archived by the owner on Sep 23, 2020. It is now read-only.

Commit

Permalink
Enable query API by default, rigged keystore path.
Browse files Browse the repository at this point in the history
  • Loading branch information
labisso committed Apr 10, 2010
1 parent e1b7414 commit 82abefe
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
2 changes: 2 additions & 0 deletions messaging/gt4.0/java/gar-builder/etc/post-deploy.xml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@
location="${rest.conf.dir}/rest.conf.tmp"/>

<filterset id="absPathFilter">
<filter token="DEPLOY_DIR"
value="${deploy.dir}"/>
<filter token="WORKSPACE_CONFDIR"
value="${workspace.conf.dir}"/>
<filter token="ELASTIC_CONFDIR"
Expand Down
22 changes: 12 additions & 10 deletions messaging/query/java/source/etc/query/query.conf
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,22 @@

# EC2 query interface is disabled by default. You must configure
# the keystore information below before enabling.
query.enabled=false
query.enabled=true

# port number of HTTPS server. There is no option to use non-HTTPS.
https.port=8080
https.port=8444

# path to Java keystore file, for serving up Query API via SSL.
# NOTE: this file is not created by the installer (yet). If you don't have
# an existing Java keystore, see
# http://docs.codehaus.org/display/JETTY/How+to+configure+SSL#HowtoconfigureSSL-step1
# for details on creating one. Then place the path here and the password
# below.
keystore.path=@QUERY_CONFDIR@/keystore.jks

# password of java keystore specified above
# This file is created by the installer, and should be placed in
# $NIMBUS_HOME/var/keystore.jks
keystore.path=@DEPLOY_DIR@/../var/keystore.jks

# password of java keystore specified above.
# Note: You can change this password if you like, but it practice it doesn't
# usually matter because the keystore is stored alongside an unencrypted
# PEM version of the same key. Just ensure that each of these files
# are only readable by the Nimbus user.
#
keystore.password=changeit


Expand Down

0 comments on commit 82abefe

Please sign in to comment.