source: gs2-extensions/afrepo/trunk/src/AFR-SETUP.sh.in

Last change on this file was 27749, checked in by davidb, 11 years ago

restructuring so the different servers and PHP code needing to talk to servers operates successfully with ProxyPass

File size: 789 bytes
Line 
1#
2# Edit the following variables as appropriate for your setup
3#
4
5# Default values assume servers accessable over http (rather then https) and on consecutive ports that are open to external access
6
7protocol="http"
8
9# Assume hostname is the name of this computer, and that the port value needed is the one in Apache config file
10
11hostname=`hostname`
12port=`egrep "^Listen" $GEXTAMP_INSTALLED/conf/httpd.conf | awk '{print $2}'`
13
14public_facing_hostname=$hostname
15public_facing_port=$port
16public_facing_url_prefix=
17
18# Assume the 4store is local, and running on a server one port number higher than the Apache web server
19f4store_hostname=$hostname
20f4store_port=`expr $port + 1`
21
22
23public_facing_f4store_hostname=$hostname
24public_facing_f4store_port=$port
25public_facing_f4store_url_prefix=/4store
Note: See TracBrowser for help on using the repository browser.