Author: shane.bryzak(a)jboss.com
Date: 2008-08-15 17:27:05 -0400 (Fri, 15 Aug 2008)
New Revision: 8706
Modified:
trunk/doc/Seam_Reference_Guide/en-US/Security.xml
Log:
describe overriding the default http and https ports in pages.xml
Modified: trunk/doc/Seam_Reference_Guide/en-US/Security.xml
===================================================================
--- trunk/doc/Seam_Reference_Guide/en-US/Security.xml 2008-08-15 17:51:06 UTC (rev 8705)
+++ trunk/doc/Seam_Reference_Guide/en-US/Security.xml 2008-08-15 21:27:05 UTC (rev 8706)
@@ -4605,6 +4605,26 @@
This option helps make your system less vulnerable to sniffing of the session id or
leakage of
sensitive data from pages using HTTPS to other pages using HTTP.
</para>
+
+ <sect2>
+ <title>Overriding the default ports</title>
+
+ <para>
+ If you wish to configure the HTTP and HTTPS ports manually, they may be
configured in
+ <literal>pages.xml</literal> by specifying the
<literal>http-port</literal> and
+ <literal>https-port</literal> attributes on the
<literal>pages</literal> element:
+ </para>
+
+ <programlisting role="XML"><![CDATA[
+<pages
xmlns="http://jboss.com/products/seam/pages"
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+
xsi:schemaLocation="http://jboss.com/products/seam/pages
http://jboss.com/products/seam/pages-2.1.xsd"
+ no-conversation-view-id="/home.xhtml"
+ login-view-id="/login.xhtml"
+ http-port="8080"
+ https-port="8443">
+ ]]></programlisting>
+ </sect2>
</sect1>