Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
grouper/container_files/tomcat/conf/server.xml.grouper.patch
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
55 lines (53 sloc)
1.96 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- server.xml.original 2025-01-04 15:19:50 | |
+++ server.xml.grouper 2025-01-04 15:22:01 | |
@@ -68,11 +68,12 @@ | |
APR (HTTP/AJP) Connector: /docs/apr.html | |
Define a non-SSL/TLS HTTP/1.1 Connector on port 8080 | |
--> | |
- <Connector port="8080" protocol="HTTP/1.1" | |
+ <!--GROUPER_HTTP_CONNECTOR--> | |
+ <!--Connector port="8080" protocol="HTTP/1.1" | |
connectionTimeout="20000" | |
redirectPort="8443" | |
maxParameterCount="1000" | |
- /> | |
+ --> | |
<!-- A "Connector" using the shared thread pool--> | |
<!-- | |
<Connector executor="tomcatThreadPool" | |
@@ -100,6 +101,7 @@ | |
</SSLHostConfig> | |
</Connector> | |
--> | |
+ <!--GROUPER_HTTPS_CONNECTOR--> | |
<!-- Define an SSL/TLS HTTP/1.1 Connector on port 8443 with HTTP/2 | |
This connector uses the APR/native implementation which always uses | |
OpenSSL for TLS. | |
@@ -130,7 +132,8 @@ | |
maxParameterCount="1000" | |
/> | |
--> | |
- | |
+ <!--GROUPER_AJP_CONNECTOR--> | |
+ | |
<!-- An Engine represents the entry point (within Catalina) that processes | |
every request. The Engine implementation for Tomcat stand alone | |
analyzes the HTTP headers included with the request, and passes them | |
@@ -168,13 +171,16 @@ | |
<!-- | |
<Valve className="org.apache.catalina.authenticator.SingleSignOn" /> | |
--> | |
+ <!--GROUPER_TOMCAT_REMOTE_CIDR_VALVE--> | |
+ <!--GROUPER_TOMCAT_REMOTE_IP_VALVE--> | |
+ | |
+ <!--GROUPER_TOMCAT_REWRITE_VALVE--> | |
+ | |
<!-- Access log processes all example. | |
Documentation at: /docs/config/valve.html | |
Note: The pattern used is equivalent to using pattern="common" --> | |
- <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" | |
- prefix="localhost_access_log" suffix=".txt" | |
- pattern="%h %l %u %t "%r" %s %b" /> | |
+ <!--GROUPER_LOGGING_VALVE--> | |
</Host> | |
</Engine> |