LP1834208 Remove example Apache Websockets configuration
authorJason Stephenson <jason@sigio.com>
Fri, 28 Jun 2019 12:58:40 +0000 (08:58 -0400)
committerBen Shum <ben@evergreener.net>
Sun, 21 Jul 2019 19:51:35 +0000 (15:51 -0400)
The examples/apache_24/websockets files were left behind by the
previous commit.  This commit deletes them.

Signed-off-by: Jason Stephenson <jason@sigio.com>
Signed-off-by: Jason Boyer <jboyer@library.in.gov>
Signed-off-by: Ben Shum <ben@evergreener.net>

examples/apache_24/websockets/apache2.conf [deleted file]

diff --git a/examples/apache_24/websockets/apache2.conf b/examples/apache_24/websockets/apache2.conf
deleted file mode 100644 (file)
index 0ad11a7..0000000
+++ /dev/null
@@ -1,64 +0,0 @@
-# This is the main Apache 2.4 server configuration file for the OpenSRF
-# WebSockets gateway.
-
-Include mods-available/mpm_prefork.load
-Include mods-available/mpm_prefork.conf
-Include mods-available/access_compat.load
-Include mods-available/authz_core.load
-
-# if we don't want to run as "opensrf", change the LockFile
-#LockFile ${APACHE_LOCK_DIR}/accept.lock
-Mutex file:${APACHE_LOCK_DIR} default
-PidFile ${APACHE_PID_FILE}
-User ${APACHE_RUN_USER}
-Group ${APACHE_RUN_GROUP}
-
-DefaultType None
-HostnameLookups Off
-ErrorLog ${APACHE_LOG_DIR}/error.log
-LogLevel warn
-
-# only affects the initial connection, which should be quick.
-Timeout 30
-
-# WebSockets is KeepAlive on steroids
-KeepAlive Off
-
-<IfModule mpm_prefork_module>
-    StartServers          5
-    MinSpareServers       5
-    MaxSpareServers      20
-    # use ServerLimit to raise beyond 256
-    MaxClients          256
-    MaxRequestsPerChild   0
-</IfModule>
-
-# include the exact mods we need
-Include mods-available/mime.load
-Include mods-available/mime.conf
-# SSL requires mime
-Include mods-available/ssl.load
-Include mods-available/ssl.conf
-Include mods-available/socache_shmcb.load
-
-LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
-LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
-LogFormat "%h %l %u %t \"%r\" %>s %O" common
-LogFormat "%{Referer}i -> %U" referer
-LogFormat "%{User-agent}i" agent
-
-Listen 7682
-<VirtualHost *:7682>
-    DocumentRoot /var/www
-    ServerName localhost:7682
-    ServerAlias 127.0.0.1:7682
-    SSLEngine on
-    SSLHonorCipherOrder On
-    SSLCipherSuite ECDHE-RSA-AES256-SHA384:AES256-SHA256:RC4:HIGH:!MD5:!aNULL:!EDH:!AESGCM
-
-    # re-use the certs from the main apache instance
-    SSLCertificateFile /etc/apache2/ssl/server.crt
-    SSLCertificateKeyFile /etc/apache2/ssl/server.key
-</VirtualHost>
-
-