setup.env localhost definitions should make use of envvars
Former-commit-id: f7d6c2187e
This commit is contained in:
parent
dbdd592104
commit
df0480b8f0
1 changed files with 3 additions and 3 deletions
|
@ -25,17 +25,17 @@ export DB_PORT=5432
|
|||
export BROKER_ADDR=localhost
|
||||
|
||||
# setup hdf5 connection if pypies is enabled
|
||||
export PYPIES_SERVER=http://localhost:9582
|
||||
export PYPIES_SERVER=http://${BROKER_ADDR}:9582
|
||||
|
||||
# moved here from environment.xml
|
||||
# these values are returned to clients that contact the localization service
|
||||
export HTTP_PORT=9581
|
||||
export HTTP_SERVER_PATH=/services
|
||||
export HTTP_SERVER=http://localhost:${HTTP_PORT}${HTTP_SERVER_PATH}
|
||||
export HTTP_SERVER=http://${BROKER_ADDR}:${HTTP_PORT}${HTTP_SERVER_PATH}
|
||||
export JMS_SERVER=tcp://${BROKER_ADDR}:5672
|
||||
export JMS_VIRTUALHOST=edex
|
||||
export JMS_CONNECTIONS_URL=http://${BROKER_ADDR}:8180/api/v2/connection/${JMS_VIRTUALHOST}
|
||||
export RADAR_SERVER=tcp://localhost:8813
|
||||
export RADAR_SERVER=tcp://${BROKER_ADDR}:8813
|
||||
|
||||
# set the AWIPS II shared directory
|
||||
export SHARE_DIR=/awips2/edex/data/share
|
||||
|
|
Loading…
Add table
Reference in a new issue