set MaxClients 32, SA-457
[irspy-moved-to-github.git] / web / conf / apache2.0 / irspy.conf
index 67161cc..e735586 100644 (file)
 # For debian & unbuntu: please read irspy/README for a list of depending packages
 #
 
+#
+# an irspy toroid process takes up to 90MB for each request
+# 90*32 => 3GB RAM
+#
+MaxClients 32
+
 <VirtualHost *:80>
     ServerName irspy.indexdata.com
     ServerAlias irspy2.indexdata.com irspy irspy-dev.indexdata.com
       Order deny,allow
       Allow from all
     </Proxy>
-    ProxyPass         /toroid/ http://localhost:12367/
-    ProxyPassReverse  /toroid/ http://localhost:12367/
+
+    
+    # map /toroid to CGI script irspy-toroid.cgi
+    ScriptAlias /toroid/records        /home/indexdata/irspy-toroid/irspy-toroid.cgi 
+
+
+    # legacy ruby daemon
+    #ProxyPass         /toroid/ http://localhost:12367/
+    #ProxyPassReverse  /toroid/ http://localhost:12367/
+
+    # compress output
+    <Location />
+      AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml
+      SetOutputFilter DEFLATE
+    </Location>
 </VirtualHost>