Resource Menu


posted by Sebastien Jourdain at May 30, 2007 10:49 PM
Quote
The only interesting thing for Libresource 2.2 is the apache and jonas/tomcat configuration, nothing more.

With Libresource 2.2 we don't need anymore ant execution for the libresource configuration, everything is done in libresourceConfig.properties.

posted by Romain KEIRSEBILCK at May 30, 2007 7:22 PM
Quote
I'm folowed this instructions but i can't find the configure.sh script. Does its named has been changed for LibreSource 2.2?
posted by Sebastien Jourdain at Aug 25, 2006 5:14 PM
Quote
In your ls-config.properties file you should set the right machine name: www.myLibreSourceServer.com (you don't need to specify the port)

And call configure.sh in case of installer package or ant deploy in case of source distribution

posted by Eric Leclercq at Aug 25, 2006 4:54 PM
Quote
LibreSource sends a part of the home page without applying stylesheet and when I clic on an action the URL is always begining with http://machinename:9000/....

Do you have any idea ?

Regards ERIC

posted by Sebastien Jourdain at Aug 25, 2006 12:02 PM
Quote
Yes its possible, you just have to set virtual host on your apache (front-end) to the LibreSource tomcat. And update your JONAS_ROOT/conf/server.xml for tomcat configuration.

Sample configuration:

Apache

<VirtualHost *>
   ServerAdmin jourdain@artenum.com
   ServerName www.myLibreSourceServer.com
   ErrorLog error_log
   CustomLog access_log combined
   ProxyPass / http://ls-local-ip:9000/
   ProxyPassReverse / http://ls-local-ip:9000/
</VirtualHost>

JOnAs / Tomcat

<Connector port="9000"
           maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
           enableLookups="false" redirectPort="9043" acceptCount="100"
           debug="0" connectionTimeout="20000"
           disableUploadTimeout="true"
           proxyName="www.myLibreSourceServer.com"
           proxyPort="80"
/>
posted by Eric Leclercq at Aug 25, 2006 11:52 AM
Quote
My machine runs apache http server on port 80 and LibreSource on port 9000. We are trying to use LibreSource for the Open TTT project which aims at developping Transnational Technology Transfert for OpenSource software.

Some users would like to access to LibreSource without using the port 9000 (problems with local administrators).

Is it possible to relay requests from Apache to Libresource/Jonas/Tomcat as we can do in a traditional installation of Apache/TOMCAT ?

Regards ERIC