On Fri, Oct 10, 2008 at 01:38:56AM +0200, Urso Wieske wrote:
> Hi Cristobal
> 
> I am pleased to receive your example.
> I am using the instuction on the Pootle site, but I am not confident that I
> am doing the right thing,

Firstly, make sure that you have proxy working. What modules do you
have enabled in apache?

  [EMAIL PROTECTED]:/etc/apache2/mods-enabled$ ls -1 proxy*
  proxy.conf
  proxy_http.load
  proxy.load

Next, are you doing a directory (Location directive) or subdomain
(vhost conf file)? I'm doing a vhost, so here goes what's in my vhost
conf file, substituting "example.org" in:

  <VirtualHost *>
   ServerName pootle.myhost.example.org
   ServerAlias pootle.example.org
   ProxyPass /images !
   ProxyPass /js !
   ProxyPass /pootle.css !
   ProxyPass /favicon.ico !
   ProxyPass / http://localhost:8080/
   ProxyPassReverse / http://localhost:8080/
   <Directory proxy:http://localhost:8080/*>
       Order deny,allow
       Allow from all
   </Directory>
   ErrorLog /var/log/apache2/pootle-error_log
   CustomLog /var/log/apache2/pootle-access_log common
   # Fallback for static html content
   DocumentRoot "/usr/share/pootle/html"
   <Directory "/usr/share/pootle/html">
     Order deny,allow
     Allow from all
   </Directory>
  </VirtualHost>

So then I start pootle up, and it runs on 8080. Anything else? If any
experts around want to chime in and let me know if I'm doing something
silly, that would also be nice.

Cheers,
-- 
Cristóbal Palmer
ibiblio.org systems administrator

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Translate-pootle mailing list
Translate-pootle@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/translate-pootle

Reply via email to