<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: localhost:8080/alfresco to web root in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/localhost-8080-alfresco-to-web-root/m-p/207989#M161119</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;There is a detailed list, which files you need to change, its quite a lot. At least in the wiki but also here in the forum, I think. Check out the search function on the upper right&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards, Norgan&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 May 2009 09:46:31 GMT</pubDate>
    <dc:creator>norgan</dc:creator>
    <dc:date>2009-05-08T09:46:31Z</dc:date>
    <item>
      <title>localhost:8080/alfresco to web root</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/localhost-8080-alfresco-to-web-root/m-p/207988#M161118</link>
      <description>Hi,I have installed Alfresco 3 stable on ubuntu 9 server.to access share and alfresco, the url is http://192.168.0.4:8080/alfresco and http://192.168.0.4:8080/sharecan i change the login url http://192.168.0.4:8080/alfresco to just http://192.168.0.4/portal/ or http://192.168.0.4/and http://192.168.</description>
      <pubDate>Thu, 07 May 2009 04:50:05 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/localhost-8080-alfresco-to-web-root/m-p/207988#M161118</guid>
      <dc:creator>howsday</dc:creator>
      <dc:date>2009-05-07T04:50:05Z</dc:date>
    </item>
    <item>
      <title>Re: localhost:8080/alfresco to web root</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/localhost-8080-alfresco-to-web-root/m-p/207989#M161119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;There is a detailed list, which files you need to change, its quite a lot. At least in the wiki but also here in the forum, I think. Check out the search function on the upper right&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards, Norgan&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 May 2009 09:46:31 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/localhost-8080-alfresco-to-web-root/m-p/207989#M161119</guid>
      <dc:creator>norgan</dc:creator>
      <dc:date>2009-05-08T09:46:31Z</dc:date>
    </item>
    <item>
      <title>Re: localhost:8080/alfresco to web root</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/localhost-8080-alfresco-to-web-root/m-p/207990#M161120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You could change Tomcats http-connector port from 8080 to just 80 to accomplish that, however as stated above you need to change it in several locations other than the Tomcat server config file since Alfresco assumes that the connector port is 8080. I've done this, although I did it to be able to run several instances parallell, and as far as I can tell there's not that many files that need to be changed, but I might have missed out on some and there's always a risk that you miss out on something important.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;However, a much better solution in your case might be to use Apache with the mod_jk connector as a proxy , that way you could use Apache to redirect any connections to the standard http port (80) to your Tomcat server (which could then keep 8080 as its http port). It's a pretty straightforward setup, feel free to ask if you need any pointers on setting it up.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 May 2009 09:27:11 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/localhost-8080-alfresco-to-web-root/m-p/207990#M161120</guid>
      <dc:creator>gronfelt</dc:creator>
      <dc:date>2009-05-11T09:27:11Z</dc:date>
    </item>
    <item>
      <title>Re: localhost:8080/alfresco to web root</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/localhost-8080-alfresco-to-web-root/m-p/207991#M161121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have a init script to do that:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;# chkconfig: 345 75 10&lt;BR /&gt;# Init script to redirect ports for Alfresco&lt;BR /&gt;&lt;BR /&gt;case "$1" in&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'start')&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;iptables -F&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;iptables -t nat -F&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;iptables -P INPUT ACCEPT&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;iptables -P FORWARD ACCEPT&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;iptables -P OUTPUT ACCEPT &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;iptables -t nat -A PREROUTING -p tcp –dport 80 -j REDIRECT –to-port 8080&lt;BR /&gt;esac&lt;BR /&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2009 12:56:56 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/localhost-8080-alfresco-to-web-root/m-p/207991#M161121</guid>
      <dc:creator>sergisat</dc:creator>
      <dc:date>2009-05-12T12:56:56Z</dc:date>
    </item>
  </channel>
</rss>

