Hi.
For all those who may have the same problem, the solution is to change the bindings.xml
file at the ${your server configuration}/conf/bootstrap directory.
There, you must change two parts. The first one is easy:
| <property name="bindingName">HttpsConnector</property>
| <property name="port">443</property>
|
The other not so obvious change is at the following line:
| <xsl:variable name="portHttps" select="$port + 363"/>
|
Note that the default HTTP port is 8080 and the default HTTPS port is 8443, so 8080+363 =
8443. Here you must compute the number that must be added/substracted to 8080 in order to
get the desired 443 port: 8080 - 7637 = 443. So the resulting line is:
| <xsl:variable name="portHttps" select="$port - 7637"/>
|
Hope this may help someone.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4238584#...
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&a...