cancel
Showing results for 
Search instead for 
Did you mean: 

Company name in login URL

bjorn
Champ in-the-making
Champ in-the-making
Hi Guys,

I have Alfresco Community 4.2.e on Server 2008.

For users to login they have to go to http://10.0.1.2/share/page
Only entering the IP address goes to the Tomcat Page.

How do I configure the login page to http://intranet.companyname.com

I don't want the users to see the IP address or have to type "share/page"

Thanks in advance,

Bjorn
2 REPLIES 2

majykoyster
Champ in-the-making
Champ in-the-making
It has nothing to do with Alfresco, just create an A or CNAME record in your DNS server, pointing either directly to that IP address or an already existing A record for the server.

Regarding the folders, I'm far less familiar with Tomcat than with Apache, but you should be able to define the "/share/page" folder as the root folder for "http://localhost/". Check this : http://gardiary.wordpress.com/2011/02/01/change-apache-tomcat-6-root-context/

bjorn
Champ in-the-making
Champ in-the-making
.
Thank you Majyk,

I created the DNS entry, and added this

<%
response.sendRedirect("http://intranet.companyname.com/share");
%>

to Alfresco\tomcat\webapps\ROOT\index.jsp

that fixed it.