cancel
Showing results for 
Search instead for 
Did you mean: 

Access Alfresco from the Internet

grahampaull1
Champ in-the-making
Champ in-the-making
Hi All,

This is my first post as this is my first time installing Alfresco and have one question.

I have installed Alfresco 4 on my Windows Server 2008 server but I have no idea how to use Tomcat.

What I want to do is go to a domain (http://repo.domain.ie) and be able to access Alfresco, I have pointed the domain to the server.

Any help would be much appreciated.

Thanks.
1 REPLY 1

jpotts
World-Class Innovator
World-Class Innovator
This isn't really specific to Alfresco or Tomcat. You'll need an entry in your DNS server that maps your domain to the IP address of your tomcat server. Tomcat listens for requests on port 8080. If you don't want people to have to specify the port in the URL, you'll either need to configure it to listen on port 80 (not recommended), use a port forwarding setup on your machine to forward requests that come in on port 80 to port 8080, or configure apache to handle the requests and forward on to tomcat. This last option is the most prevalent.

To implement the last option, you want something called the Apache Tomcat Connector, which is often referred to as mod_jk. There is a page on the Alfresco wiki that explains how to set this up. But, as I said, this is common to everyone who uses the Apache web server with Tomcat, so you should be able to find lots of resources about it on the web.

Jeff