cancel
Showing results for 
Search instead for 
Did you mean: 

Chaning the Base URL

j_pfeifer
Champ in-the-making
Champ in-the-making
Hello everyone,

how do i change the URL of the WebClient in the Server from

http://server/alfresco
to
http://server

Is it possibly at all or is the /alresco a must in the URL?

I've found out how to get the Default Http Port from 8080 to 80, but in that config file wasn't anything related to my Problem…

Greetings
2 REPLIES 2

gronfelt
Champ in-the-making
Champ in-the-making
First of all, you could change the tomcat listening port to 80 (which I assume is what you have done), but it's not a that good idea, because the port number 8080 is still hardcoded in many files in the webapplication. A better solution would be to put a proxy (an Apache server for instance) in front of Alfresco and let that listen on port 80 and forward requests to Tomcat.

Regarding your main question that is discussed under this topic, where I have presented one solution that will allow users to only enter http://servername/ instead of http://servername/alfresco, but that won't hide the /alfresco (it will be added by Apache):

http://forums.alfresco.com/en/viewtopic.php?f=9&t=22176

I don't know if that solution could work for you?

j_pfeifer
Champ in-the-making
Champ in-the-making
Thanks for the answer. You helped me with that…