#
# Edit the following variables as appropriate for your setup
#

# Default values assume servers accessable over http (rather then https) and on consecutive ports that are open to external access

protocol="http"

# Assume hostname is the name of this computer, and that the port value needed is the one in Apache config file

hostname=`hostname`
port=`egrep "^Listen" $GEXTAMP_INSTALLED/conf/httpd.conf | awk '{print $2}'`

public_facing_hostname=$hostname
public_facing_port=$port
public_facing_url_prefix=

# Assume the 4store is local, and running on a server one port number higher than the Apache web server
f4store_hostname=$hostname
f4store_port=`expr $port + 1`


public_facing_f4store_hostname=$hostname
public_facing_f4store_port=$port
public_facing_f4store_url_prefix=/4store
