[java-idp-tomcat-base] 10/10: Move IdP properties to top of catalina.properties
Tom Zeller
tzeller at dragonacea.biz
Tue Aug 8 12:44:15 UTC 2023
This is an automated email from the git hooks/post-receive script.
tzeller pushed a commit to branch 10.1
in repository java-idp-tomcat-base.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-tomcat-base.git;a=commit;h=f175a180562f8368ae593447c0d2dbd44ae24c1a
commit f175a180562f8368ae593447c0d2dbd44ae24c1a
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Mon Aug 7 18:50:44 2023 -0500
Move IdP properties to top of catalina.properties
---
tomcat-base/conf/catalina.properties | 52 ++++++++++++++++++------------------
1 file changed, 26 insertions(+), 26 deletions(-)
diff --git a/tomcat-base/conf/catalina.properties b/tomcat-base/conf/catalina.properties
index b35755e..903b062 100644
--- a/tomcat-base/conf/catalina.properties
+++ b/tomcat-base/conf/catalina.properties
@@ -13,6 +13,32 @@
# See the License for the specific language governing permissions and
# limitations under the License.
+#
+# Shibboleth IdP properties
+#
+
+# HTTP connector
+# Allows use of default IdP command line tools.
+tomcat.http.host=127.0.0.1
+tomcat.http.port=80
+
+# The HTTPS connector
+# The interface to listen on. To listen on all interfaces, set tomcat.host = 0.0.0.0
+tomcat.https.host=0.0.0.0
+tomcat.https.port=443
+tomcat.https.certificateKeystoreFile=credentials/idp-userfacing.p12
+tomcat.https.certificateKeystorePassword=changeit
+
+# The SOAP endpoint connector
+tomcat.backchannel.port=8443
+tomcat.backchannel.keystoreFile=credentials/idp-backchannel.p12
+tomcat.backchannel.keystorePass=changeit
+tomcat.backchannel.keystoreType=PKCS12
+
+# Shutdown port and password
+tomcat.shutdown.port=8005
+tomcat.shutdown.password=SHUTDOWN
+
#
# List of comma-separated packages that start with or equal this string
# will cause a security exception to be thrown when
@@ -349,29 +375,3 @@ tomcat.util.buf.StringCache.byte.enabled=true
# Disable use of some privilege blocks Tomcat doesn't need since calls to the
# code in question are always already inside a privilege block
org.apache.el.GET_CLASSLOADER_USE_PRIVILEGED=false
-
-#
-# Shibboleth IdP properties
-#
-
-# HTTP connector
-# Allows use of default IdP command line tools.
-tomcat.http.host=127.0.0.1
-tomcat.http.port=80
-
-# The HTTPS connector
-# The interface to listen on. To listen on all interfaces, set tomcat.host = 0.0.0.0
-tomcat.https.host=0.0.0.0
-tomcat.https.port=443
-tomcat.https.certificateKeystoreFile=credentials/idp-userfacing.p12
-tomcat.https.certificateKeystorePassword=changeit
-
-# The SOAP endpoint connector
-tomcat.backchannel.port=8443
-tomcat.backchannel.keystoreFile=credentials/idp-backchannel.p12
-tomcat.backchannel.keystorePass=changeit
-tomcat.backchannel.keystoreType=PKCS12
-
-# Shutdown port and password
-tomcat.shutdown.port=8005
-tomcat.shutdown.password=SHUTDOWN
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list