[Rt-commit] rt branch, 5.0-trunk, updated. rt-5.0.0alpha1-224-g651cbe8e24
? sunnavy
sunnavy at bestpractical.com
Mon May 4 15:49:51 EDT 2020
The branch, 5.0-trunk has been updated
via 651cbe8e24c7fbc201eb86b599fc01e00d5ca9f3 (commit)
via 00d10d6efafddbf2346df582bcb9278616b42778 (commit)
via 0e0e496580cd1592b9811f5d6db35d8bedcc0238 (commit)
from 1a3be80f960b17b954ad5f0a44aa43c7622a8db8 (commit)
Summary of changes:
README | 60 ++++++++++++++++++++++++++++++++-----------------
docs/authentication.pod | 12 +---------
docs/web_deployment.pod | 60 ++-----------------------------------------------
3 files changed, 42 insertions(+), 90 deletions(-)
- Log -----------------------------------------------------------------
commit 00d10d6efafddbf2346df582bcb9278616b42778
Author: Jim Brandt <jbrandt at bestpractical.com>
Date: Mon May 4 13:45:42 2020 -0400
Remove references to end-of-life versions and software
FastCGI is no longer supported and Apache 2.2 has reached
end of life:
https://httpd.apache.org/#apache-httpd-22-end-of-life-2018-01-01
diff --git a/docs/authentication.pod b/docs/authentication.pod
index f6c6af5257..882805ed21 100644
--- a/docs/authentication.pod
+++ b/docs/authentication.pod
@@ -82,17 +82,7 @@ An example of using LDAP authentication and HTTP Basic auth:
"ldap://ldap.example.com/dc=example,dc=com"
</Location>
<Location /REST/1.0/NoAuth/mail-gateway>
- # For Apache 2.4
- <IfVersion >= 2.4>
- Require local
- </IfVersion>
- # For Apache 2.2
- <IfVersion < 2.4>
- Order deny,allow
- Deny from all
- Allow from localhost
- Satisfy any
- </IfVersion>
+ Require local
</Location>
diff --git a/docs/web_deployment.pod b/docs/web_deployment.pod
index 010e4af34f..779401f985 100644
--- a/docs/web_deployment.pod
+++ b/docs/web_deployment.pod
@@ -32,40 +32,6 @@ spontaneously logged in as other users in the system.
See also L<authentication/Apache configuration>, in case you intend to
use Apache to provide authentication.
-=head3 mod_fastcgi
-
- # Tell FastCGI to put its temporary files somewhere sane; this may
- # be necessary if your distribution doesn't already set it
- #FastCgiIpcDir /tmp
-
- FastCgiServer /opt/rt5/sbin/rt-server.fcgi -processes 5 -idle-timeout 300
-
- <VirtualHost rt.example.com>
- ### Optional apache logs for RT
- # Ensure that your log rotation scripts know about these files
- # ErrorLog /opt/rt5/var/log/apache2.error
- # TransferLog /opt/rt5/var/log/apache2.access
- # LogLevel debug
-
- AddDefaultCharset UTF-8
-
- ScriptAlias / /opt/rt5/sbin/rt-server.fcgi/
-
- DocumentRoot "/opt/rt5/share/html"
- <Location />
- <IfVersion >= 2.4> # For Apache 2.4
- Require all granted
- </IfVersion>
- <IfVersion < 2.4> # For Apache 2.2
- Order allow,deny
- Allow from all
- </IfVersion>
-
- Options +ExecCGI
- AddHandler fastcgi-script fcgi
- </Location>
- </VirtualHost>
-
=head3 mod_fcgid
B<WARNING>: Before mod_fcgid 2.3.6, the maximum request size was 1GB.
@@ -94,14 +60,7 @@ to return to the old default.
DocumentRoot "/opt/rt5/share/html"
<Location />
- <IfVersion >= 2.4> # For Apache 2.4
- Require all granted
- </IfVersion>
- <IfVersion < 2.4> # For Apache 2.2
- Order allow,deny
- Allow from all
- </IfVersion>
-
+ Require all granted
Options +ExecCGI
AddHandler fcgid-script fcgi
</Location>
@@ -133,14 +92,7 @@ C<SetHandler modperl>, as the example below uses.
DocumentRoot "/opt/rt5/share/html"
<Location />
- <IfVersion >= 2.4> # For Apache 2.4
- Require all granted
- </IfVersion>
- <IfVersion < 2.4> # For Apache 2.2
- Order allow,deny
- Allow from all
- </IfVersion>
-
+ Require all granted
SetHandler modperl
PerlResponseHandler Plack::Handler::Apache2
PerlSetVar psgi_app /opt/rt5/sbin/rt-server
@@ -151,14 +103,6 @@ C<SetHandler modperl>, as the example below uses.
</Perl>
</VirtualHost>
-=head3 mod_perl 1.xx
-
-B<WARNING: mod_perl 1.99_xx is not supported.>
-
-To run RT using mod_perl 1.xx please see L<Plack::Handler::Apache1> for
-configuration examples.
-
-
=head2 nginx
C<nginx> requires that you start RT's fastcgi process externally, for
commit 651cbe8e24c7fbc201eb86b599fc01e00d5ca9f3
Merge: 1a3be80f96 00d10d6efa
Author: sunnavy <sunnavy at bestpractical.com>
Date: Tue May 5 03:43:38 2020 +0800
Merge branch '5.0/update-readme' into 5.0-trunk
-----------------------------------------------------------------------
More information about the rt-commit
mailing list