diff modules/apache/templates/fastcgi/server.erb @ 257:675c1cc61eaf

Update Apache module to get CentOS 8 support Unfortunately it only fixes some bits. mod_wsgi still needs other approaches This also overrides the vhost modification to make them come last in the import order (after module loading)
author IBBoard <dev@ibboard.co.uk>
date Sun, 22 Dec 2019 14:43:29 -0500
parents 37675581a273
children
line wrap: on
line diff
--- a/modules/apache/templates/fastcgi/server.erb	Sun Dec 22 09:41:45 2019 -0500
+++ b/modules/apache/templates/fastcgi/server.erb	Sun Dec 22 14:43:29 2019 -0500
@@ -1,3 +1,22 @@
-FastCGIExternalServer <%= @faux_path %> -idle-timeout <%= @timeout %> <%= if @flush then '-flush' end %> -host <%= @host %>
+<%
+  timeout = " -idle-timeout #{@timeout}"
+  flush = ""
+  if @flush
+    flush = " -flush"
+  end
+  if @socket
+    host_or_socket = " -socket #{@socket}"
+  else
+    host_or_socket = " -host #{@host}"
+  end
+
+  pass_header = ""
+  if @pass_header and ! @pass_header.empty?
+    pass_header = " -pass-header #{@pass_header}"
+  end
+
+  options = timeout + flush + host_or_socket + pass_header
+-%>
+FastCGIExternalServer <%= @faux_path %><%= options %>
 Alias <%= @fcgi_alias %> <%= @faux_path %>
 Action <%= @file_type %> <%= @fcgi_alias %>