Hi, Please find attached as required jee-container.xml regards
On Sat, Jul 25, 2020 at 6:36 PM Alvaro <[email protected]> wrote: > ...Sorry Ajay, could you please send me your file: > > jee-container.xml > > ...'cause i don't get put it right. > > Thank you > > > ......... > > > El sáb, 25-07-2020 a las 13:48 +0530, Ajay Simha escribió: > > Hi Mr. Alvaro, > > Sending you the text file with steps which we had followed, most of the > steps are included in OM documentation already, only the generation of > self signed certificates are extra steps which are added > > regards > Ajay > > > On Sat, Jul 25, 2020 at 12:09 PM Alvaro <[email protected]> wrote: > > Hello Ajay, > > Could you please write the steps you has followed to get it? > > Thank you > > > .............................. > > > > El sáb, 25-07-2020 a las 00:53 +0530, Ajay Simha escribió: > > Mr.Solodovni > > Thanks for the Input, we started from scratch and were able to get 4.0.10 > on ssl > > Regards > > > On Thu, Jul 23, 2020 at 9:25 PM Maxim Solodovnik <[email protected]> > wrote: > > I would recommend to search the archives (for ex. here > https://openmeetings.markmail.org/) > The topic was discussed multiple times > > obviously some certificates are missing in the chain > Most probably SSL debug can help (search ML archives for the exact options) > > On Tue, 21 Jul 2020 at 23:37, Ajay Simha <[email protected]> wrote: > > we have modified the setup as per the document suggested, for HTTPS > > while modifying, we got an error " *Illegal option: -keystorepass* " > while running the below command > keytool -import -alias root -keystore /opt/red5/conf/keystore.jks > -keystorepass changeit -trustcacerts -file ca.crt > We changed the command from *keystorepass* to *storepass*, it got > executed (as shown below). > > keytool -import -alias root -keystore /opt/red5/conf/keystore.jks > -storepass changeit -trustcacerts -file ca.crt > > Now when we try to access the application using https://localhost:5443, > application is not accessible, *page can't be displayed* error in show on > the browser. > > we have made sure the web-server is running by executing sudo > /etc/init.d/red5-ubdeb2 start > > Your help is much appreciated in this. > > Ajay > > > > -- > Best regards, > Maxim > > >
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:lang="http://www.springframework.org/schema/lang" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang.xsd "> <!-- The tomcat connectors may be blocking or non-blocking. Select between either option via the protocol property. Blocking I/O: <property name="protocol" value="org.apache.coyote.http11.Http11Protocol" /> Non-blocking I/O: <property name="protocol" value="org.apache.coyote.http11.Http11NioProtocol" /> --> <!-- Tomcat without SSL enabled --> <!-- <bean id="tomcat.server" class="org.red5.server.tomcat.TomcatLoader" depends-on="context.loader" lazy-init="true"> <property name="websocketEnabled" value="false" /> <property name="webappFolder" value="${red5.root}/webapps" /> <property name="connectors"> <list> <bean name="httpConnector" class="org.red5.server.tomcat.TomcatConnector"> <property name="protocol" value="org.apache.coyote.http11.Http11Nio2Protocol" /> <property name="address" value="${http.host}:${http.port}" /> <property name="redirectPort" value="${https.port}" /> <property name="connectionProperties"> <map> <entry key="maxHttpHeaderSize" value="${http.max_headers_size}"/> <entry key="maxKeepAliveRequests" value="${http.max_keep_alive_requests}"/> <entry key="keepAliveTimout" value="-1"/> </map> </property> </bean> </list> </property> <property name="baseHost"> <bean class="org.apache.catalina.core.StandardHost"> <property name="name" value="${http.host}" /> </bean> </property> <property name="valves"> <list> <bean id="valve.access" class="org.apache.catalina.valves.AccessLogValve"> <property name="directory" value="log" /> <property name="prefix" value="${http.host}_access." /> <property name="suffix" value=".log" /> <property name="pattern" value="common" /> <property name="rotatable" value="true" /> </bean> <bean id="valve.error" class="org.apache.catalina.valves.ErrorReportValve"> <property name="showReport" value="false" /> <property name="showServerInfo" value="false" /> </bean> </list> </property> </bean> --> <!-- Tomcat with SSL enabled --> <bean id="tomcat.server" class="org.red5.server.tomcat.TomcatLoader" depends-on="context.loader" lazy-init="true"> <property name="websocketEnabled" value="false" /> <property name="webappFolder" value="${red5.root}/webapps" /> <property name="connectors"> <list> <bean name="httpConnector" class="org.red5.server.tomcat.TomcatConnector"> <property name="protocol" value="org.apache.coyote.http11.Http11Nio2Protocol" /> <property name="address" value="${http.host}:${http.port}" /> <property name="redirectPort" value="${https.port}" /> </bean> <bean name="httpsConnector" class="org.red5.server.tomcat.TomcatConnector"> <property name="secure" value="true" /> <property name="protocol" value="org.apache.coyote.http11.Http11Nio2Protocol" /> <property name="address" value="${http.host}:${https.port}" /> <property name="redirectPort" value="${http.port}" /> <property name="connectionProperties"> <map> <entry key="port" value="${https.port}" /> <entry key="redirectPort" value="${http.port}" /> <entry key="SSLEnabled" value="true" /> <entry key="sslProtocol" value="TLS" /> <entry key="keystoreFile" value="${rtmps.keystorefile}" /> <entry key="keystorePass" value="${rtmps.keystorepass}" /> <entry key="truststoreFile" value="${rtmps.truststorefile}" /> <entry key="truststorePass" value="${rtmps.truststorepass}" /> <entry key="clientAuth" value="false" /> <entry key="allowUnsafeLegacyRenegotiation" value="true" /> <entry key="maxHttpHeaderSize" value="${http.max_headers_size}"/> <entry key="maxKeepAliveRequests" value="${http.max_keep_alive_requests}"/> <entry key="keepAliveTimout" value="-1"/> <entry key="useExecutor" value="true"/> <entry key="maxThreads" value="${http.max_threads}"/> <entry key="acceptorThreadCount" value="${http.acceptor_thread_count}"/> <entry key="processorCache" value="${http.processor_cache}"/> </map> </property> </bean> </list> </property> <property name="baseHost"> <bean class="org.apache.catalina.core.StandardHost"> <property name="name" value="${http.host}" /> </bean> </property> <property name="valves"> <list> <bean id="valve.access" class="org.apache.catalina.valves.AccessLogValve"> <property name="directory" value="log" /> <property name="prefix" value="${http.host}_access." /> <property name="suffix" value=".log" /> <property name="pattern" value="common" /> <property name="rotatable" value="true" /> </bean> <bean id="valve.error" class="org.apache.catalina.valves.ErrorReportValve"> <property name="showReport" value="false" /> <property name="showServerInfo" value="false" /> </bean> </list> </property> </bean> </beans>
