<?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: Apache + Alfresco Proxy in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/apache-alfresco-proxy/m-p/240594#M193724</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi gronfelt,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You have gotten me closer to my desired results.&amp;nbsp; I do want to hide the URL from the user.&amp;nbsp; I kind of understand what you have mentioned about using another proxy, but I am not sure how to make this happen?&amp;nbsp; Can you please provide an example of both the mod_jk way and ProxyPass way of providing this proxy that would allow for hiding the true URL?&amp;nbsp; I have never been fond of allowing end-users to see the :8080 in the URL.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;P.S. I also wanted to thank oblivian for his response.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the assistance.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Doug&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 04 Oct 2009 14:13:27 GMT</pubDate>
    <dc:creator>dough</dc:creator>
    <dc:date>2009-10-04T14:13:27Z</dc:date>
    <item>
      <title>Apache + Alfresco Proxy</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/apache-alfresco-proxy/m-p/240591#M193721</link>
      <description>I have found several close solutions on these forums and through google, but nothing that exactly matches my desired results.&amp;nbsp; Here is what I am hoping to configure.I want to be able to have the users access Alfresco Explorer and Alfresco Share like the following:http://alfresco.somedomain.comhttp:/</description>
      <pubDate>Sat, 03 Oct 2009 03:25:39 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/apache-alfresco-proxy/m-p/240591#M193721</guid>
      <dc:creator>dough</dc:creator>
      <dc:date>2009-10-03T03:25:39Z</dc:date>
    </item>
    <item>
      <title>Re: Apache + Alfresco Proxy</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/apache-alfresco-proxy/m-p/240592#M193722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you just want your users to able to access Alfresco and Share on alfresco.somedomain.com and share.somedomain.com respectively you could just use mod_rewrite, like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&amp;lt;VirtualHost *:80&amp;gt;&lt;BR /&gt;ServerName alfresco.somedomain.com&lt;BR /&gt;RewriteEngine On&lt;BR /&gt;RewriteLogLevel 3&lt;BR /&gt;RewriteLog "/var/log/httpd/rewrite.log"&lt;BR /&gt;RewriteRule ^/(.*) &lt;A href="http://alfresco-server:8080/alfresco$1" rel="nofollow noopener noreferrer"&gt;http://alfresco-server:8080/alfresco$1&lt;/A&gt;&lt;BR /&gt;&amp;lt;/VirtualHost&amp;gt;&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;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;There's no need for proxypass and no need to use the AJP connector. However, this solution will expose the real URL (&lt;/SPAN&gt;&lt;A href="http://alfresco-server:8080/alfresco" rel="nofollow noopener noreferrer"&gt;http://alfresco-server:8080/alfresco&lt;/A&gt;&lt;SPAN&gt; in my example) once the redirect is done, so you might want to put Alfresco behind another proxy (using mod_jk or ProxyPass) and then rewrite to that, if you don't want to expose the alfresco server directly to the users and don't wan't to show the port 8080 in the url. That proxy could be another virtualhost on the same Apache server.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 Oct 2009 16:05:23 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/apache-alfresco-proxy/m-p/240592#M193722</guid>
      <dc:creator>gronfelt</dc:creator>
      <dc:date>2009-10-03T16:05:23Z</dc:date>
    </item>
    <item>
      <title>Re: Apache + Alfresco Proxy</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/apache-alfresco-proxy/m-p/240593#M193723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Just a note: I don't think you should have ProxyRequests On. If I am not mistaken (I might be) that is for forward proxying. This makes your server vulnerable to abuse if you haven't closed down what IP's that can use it as proxy. If you are using apache just for reversed proxying you should set to: ProxyRequests Off.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;BTW, can't you just mount /share as suggested and you use the RedirectPermanent directive, so the user simply types &lt;/SPAN&gt;&lt;A href="http://www.domain.tld" rel="nofollow noopener noreferrer"&gt;http://www.domain.tld&lt;/A&gt;&lt;SPAN&gt; and apache automatically redirects to: &lt;/SPAN&gt;&lt;A href="http://www.domain.tld/share/page/site-index" rel="nofollow noopener noreferrer"&gt;http://www.domain.tld/share/page/site-index&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Oblivian&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 Oct 2009 21:19:49 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/apache-alfresco-proxy/m-p/240593#M193723</guid>
      <dc:creator>oblivian</dc:creator>
      <dc:date>2009-10-03T21:19:49Z</dc:date>
    </item>
    <item>
      <title>Re: Apache + Alfresco Proxy</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/apache-alfresco-proxy/m-p/240594#M193724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi gronfelt,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You have gotten me closer to my desired results.&amp;nbsp; I do want to hide the URL from the user.&amp;nbsp; I kind of understand what you have mentioned about using another proxy, but I am not sure how to make this happen?&amp;nbsp; Can you please provide an example of both the mod_jk way and ProxyPass way of providing this proxy that would allow for hiding the true URL?&amp;nbsp; I have never been fond of allowing end-users to see the :8080 in the URL.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;P.S. I also wanted to thank oblivian for his response.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the assistance.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Doug&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 04 Oct 2009 14:13:27 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/apache-alfresco-proxy/m-p/240594#M193724</guid>
      <dc:creator>dough</dc:creator>
      <dc:date>2009-10-04T14:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: Apache + Alfresco Proxy</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/apache-alfresco-proxy/m-p/240595#M193725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;A simple solution (but I'm not sure it fits your requirements) would be to put Tomcat behind a proxy using mod_jk and then let Apache redirect the subdomains alfresco and share to that common proxy. It would then look like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. A user enters share.somedomain.com&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Apache catches the url share.somedomain.com with a virtual host and rewrites the url to &lt;/SPAN&gt;&lt;A href="http://www.somedomain.com/share" rel="nofollow noopener noreferrer"&gt;http://www.somedomain.com/share&lt;/A&gt;&lt;SPAN&gt; (for instance, www could be something else)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. Apache catches the url &lt;/SPAN&gt;&lt;A href="http://www.somedomain.com" rel="nofollow noopener noreferrer"&gt;http://www.somedomain.com&lt;/A&gt;&lt;SPAN&gt; with another virtual host and uses mod_jk to send the request to Tomcat.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;(The same procedure would go for alfresco.somedomain.com)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What the user will see is the url &lt;/SPAN&gt;&lt;A href="http://www.somedomain.com/share" rel="nofollow noopener noreferrer"&gt;http://www.somedomain.com/share&lt;/A&gt;&lt;SPAN&gt; or &lt;/SPAN&gt;&lt;A href="http://www.somedomain.com/alfresco" rel="nofollow noopener noreferrer"&gt;http://www.somedomain.com/alfresco&lt;/A&gt;&lt;SPAN&gt;. I don't know if that's ok? I guess you could set up a solution where the user would see &lt;/SPAN&gt;&lt;A href="http://share.somedomain.com/share" rel="nofollow noopener noreferrer"&gt;share.somedomain.com/share&lt;/A&gt;&lt;SPAN&gt;, but that would need more complicated rewrite rules.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The best way to set up the proxy is probably with mod_jk. The basic setup of mod_jk is described here:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://tomcat.apache.org/connectors-doc/generic_howto/quick.html" rel="nofollow noopener noreferrer"&gt;http://tomcat.apache.org/connectors-doc/generic_howto/quick.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What it does not describe is that you need to make some modifications to tomcat/conf/server.xml, you should uncomment this part:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&amp;lt;Connector port="8009" protocol="AJP/1.3" redirectPort="8443" /&amp;gt;&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;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Basically you should end up with something like:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&amp;lt;VirtualHost *:80&amp;gt;&lt;BR /&gt;ServerName alfresco.somedomain.com&lt;BR /&gt;RewriteEngine On&lt;BR /&gt;RewriteLogLevel 3&lt;BR /&gt;RewriteLog "/var/log/httpd/rewrite.log"&lt;BR /&gt;RewriteRule ^/ &lt;A href="http://www.somedomain.com/alfresco" rel="nofollow noopener noreferrer"&gt;http://www.somedomain.com/alfresco&lt;/A&gt;&lt;BR /&gt;&amp;lt;/VirtualHost&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;VirtualHost *:80&amp;gt;&lt;BR /&gt;ServerName share.somedomain.com&lt;BR /&gt;RewriteEngine On&lt;BR /&gt;RewriteLogLevel 3&lt;BR /&gt;RewriteLog "/var/log/httpd/rewrite.log"&lt;BR /&gt;RewriteRule ^/ &lt;A href="http://www.somedomain.com/share" rel="nofollow noopener noreferrer"&gt;http://www.somedomain.com/share&lt;/A&gt;&lt;BR /&gt;&amp;lt;/VirtualHost&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;VirtualHost *:80&amp;gt;&lt;BR /&gt;ServerName &lt;A href="http://www.somedomain.com" rel="nofollow noopener noreferrer"&gt;www.somedomain.com&lt;/A&gt;&lt;BR /&gt;JkMount /* worker1&lt;BR /&gt;&amp;lt;/VirtualHost&amp;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;/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>Mon, 05 Oct 2009 14:37:12 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/apache-alfresco-proxy/m-p/240595#M193725</guid>
      <dc:creator>gronfelt</dc:creator>
      <dc:date>2009-10-05T14:37:12Z</dc:date>
    </item>
    <item>
      <title>Re: Apache + Alfresco Proxy</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/apache-alfresco-proxy/m-p/240596#M193726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I gave it a second thought, and it's actually not difficult at all to configure it to work without redirecting to the third subdomain (&lt;/SPAN&gt;&lt;A href="http://www.somedomain.com" rel="nofollow noopener noreferrer"&gt;http://www.somedomain.com&lt;/A&gt;&lt;SPAN&gt;).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You could use two virtual hosts looking like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&amp;lt;VirtualHost *:80&amp;gt;&lt;BR /&gt;ServerName share.somedomain.com&lt;BR /&gt;RewriteEngine On&lt;BR /&gt;RewriteLogLevel 3&lt;BR /&gt;RewriteLog "/var/log/httpd/rewrite.log"&lt;BR /&gt;RewriteCond %{REQUEST_URI} !^/share/&lt;BR /&gt;RewriteRule ^/. &lt;A href="http://share.somedomain.com/share/" rel="nofollow noopener noreferrer"&gt;http://share.somedomain.com/share/&lt;/A&gt; [R]&lt;BR /&gt;JkMount /share/* worker1&lt;BR /&gt;&amp;lt;/VirtualHost&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;VirtualHost *:80&amp;gt;&lt;BR /&gt;ServerName alfresco.somedomain.com&lt;BR /&gt;RewriteEngine On&lt;BR /&gt;RewriteLogLevel 3&lt;BR /&gt;RewriteLog "/var/log/httpd/rewrite.log"&lt;BR /&gt;RewriteCond %{REQUEST_URI} !^/alfresco/&lt;BR /&gt;RewriteRule ^/. &lt;A href="http://alfresco.somedomain.com/alfresco/" rel="nofollow noopener noreferrer"&gt;http://alfresco.somedomain.com/alfresco/&lt;/A&gt; [R]&lt;BR /&gt;JkMount /alfresco/* worker1&lt;BR /&gt;&amp;lt;/VirtualHost&amp;gt;&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;/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;SPAN&gt;That way, any url:s beginning with share.somedomain.com will be redirected to &lt;/SPAN&gt;&lt;A href="http://share.somedomain.com/share" rel="nofollow noopener noreferrer"&gt;share.somedomain.com/share&lt;/A&gt;&lt;SPAN&gt; and the same for alfresco.somedomain.com, I hope that's good enough.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Oct 2009 17:47:20 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/apache-alfresco-proxy/m-p/240596#M193726</guid>
      <dc:creator>gronfelt</dc:creator>
      <dc:date>2009-10-05T17:47:20Z</dc:date>
    </item>
    <item>
      <title>Re: Apache + Alfresco Proxy</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/apache-alfresco-proxy/m-p/240597#M193727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi gronfelt,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have gotten side tracked, but hopefully I will have time later tonight to try your recommendations.&amp;nbsp; I appreciate you sharing your insight and knowledge.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I will let you (and others that read the forum) know the results of my attempt.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Doug&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Oct 2009 15:15:00 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/apache-alfresco-proxy/m-p/240597#M193727</guid>
      <dc:creator>dough</dc:creator>
      <dc:date>2009-10-07T15:15:00Z</dc:date>
    </item>
    <item>
      <title>Re: Apache + Alfresco Proxy</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/apache-alfresco-proxy/m-p/240598#M193728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello gronfelt,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I need a lot your collaboration, because until now, after a lot of search in Internet, I can't resolve the issue related to follow your instructions to put Alfresco behind apache.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm using:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Debian 5&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Apache2&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;alfresco-community-3.4.d-installer-linux-x32.bin&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I followed exactly that you are suggesting, without include Directoryroot and Document root (the system is using the default: /var/www) and when I go to the share.somedomain.com the browser display only the folder and files in the default directory (ftp style). Alfresco is running ok, without any problem when I'm using sharedomain.com:8080/share (or /alfresco)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm sure that exist some syntax or missing arguments in my virtualhost configuration, but I can't discover what is exactly and in the Internet I'm not founding something so clear like your solution, by this reason, I would like your collaboration.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance, I'll appreciate any comments.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Renata&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Mar 2011 17:01:03 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/apache-alfresco-proxy/m-p/240598#M193728</guid>
      <dc:creator>renata</dc:creator>
      <dc:date>2011-03-18T17:01:03Z</dc:date>
    </item>
    <item>
      <title>Re: Apache + Alfresco Proxy</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/apache-alfresco-proxy/m-p/240599#M193729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;managed to get the mod_jk working with the suggestions from gronfelt.&amp;nbsp; But if i enable both virtual hosts at the same time the user is diverted to the first rule which is the /share page.&amp;nbsp; It does port them from port 80 on Apache to 8080/share on tomcat.&amp;nbsp; What i'm interested in doing is hiding the port number to the end user as suggested by using another virtual server acting as a proxy.&amp;nbsp; I'm a bit new to editing Apache so getting&amp;nbsp; a bit confused.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm trying to get everthing working locally at the moment by adding the rules to the internal server's IP address then once i'm happy with everything i'll edit these rules to work with our network / re-configure for use out on the DMZ.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Apr 2011 15:02:43 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/apache-alfresco-proxy/m-p/240599#M193729</guid>
      <dc:creator>bensewell</dc:creator>
      <dc:date>2011-04-07T15:02:43Z</dc:date>
    </item>
  </channel>
</rss>

