open firewall port 7682 on LVS nodes for websockets
authorAndy Witter <awitter@georgialibraries.org>
Tue, 12 Jan 2016 15:01:12 +0000 (10:01 -0500)
committerAndy Witter <awitter@georgialibraries.org>
Tue, 12 Jan 2016 15:01:12 +0000 (10:01 -0500)
templates/apache2/websockets/envvars [deleted file]
templates/lvs/iptables-rules.fw

diff --git a/templates/apache2/websockets/envvars b/templates/apache2/websockets/envvars
deleted file mode 100644 (file)
index 97c2695..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-export OSRF_WEBSOCKET_IDLE_TIMEOUT=120
-export OSRF_WEBSOCKET_IDLE_CHECK_INTERVAL=5
-export OSRF_WEBSOCKET_CONFIG_FILE=/openils/conf/opensrf_core.xml
-export OSRF_WEBSOCKET_CONFIG_CTXT=gateway
-export OSRF_WEBSOCKET_MAX_REQUEST_WAIT_TIME=600
index 8d2893e..ca25b5f 100755 (executable)
@@ -108,6 +108,9 @@ $IPT -A INPUT -p udp --source-port 123 -j ACCEPT
 $IPT -A INPUT -p tcp --destination-port 22 -j ACCEPT
 # $IPT -A INPUT -p tcp --destination-port 3399 -j ACCEPT #- non standard ssh port
 
+### Accept port for Apache2 Websockets
+$IPT -A INPUT -p tcp --destination-port 7682 -j ACCEPT
+
 ######### END RULES #######