[Bug 948825] Re: Loggerhead unable to serve as deamon behind apache

2012-04-27 Thread Cruz Bishop
I could run Loggerhead fine on Ubuntu 11.10 and python 2.6, but since upgrading to 12.04 and 2.7 I have to have --allow-writes no matter where the branches are "hosted" Maybe it's for extra security? Who knows. -- You received this bug notification because you are a member of Ubuntu Bugs, which

[Bug 948825] Re: Loggerhead unable to serve as deamon behind apache

2012-04-27 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users. ** Changed in: loggerhead (Ubuntu) Status: New => Confirmed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/948825 Title:

[Bug 948825] Re: Loggerhead unable to serve as deamon behind apache

2012-04-27 Thread Cruz Bishop
** Also affects: loggerhead Importance: Undecided Status: New ** Changed in: loggerhead Status: New => Confirmed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/948825 Title: Loggerh

[Bug 948825] Re: Loggerhead unable to serve as deamon behind apache

2012-05-01 Thread Laura Czajkowski
** Changed in: loggerhead Importance: Undecided => High -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/948825 Title: Loggerhead unable to serve as deamon behind apache To manage notifications abo

[Bug 948825] Re: Loggerhead unable to serve as deamon behind apache

2012-05-01 Thread Robert Collins
You probably need paste-deploy installed. ** Changed in: loggerhead Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/948825 Title: Loggerhead unable to serve as

[Bug 948825] Re: Loggerhead unable to serve as deamon behind apache

2014-06-04 Thread Cerem Cem ASLAN
Editing code (/usr/share/pyshared/loggerhead/main.py) and setting "prefix" variable by hand is not helping either. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/948825 Title: Loggerhead unable to se

[Bug 948825] Re: Loggerhead unable to serve as deamon behind apache

2013-01-09 Thread William Grant
Bug #1097567 hints at why this breaks, and why --allow-writes fixes it: loggerhead appears to prepend readonly+ to the URL, which obviously doesn't work too well if the URL is actually a path. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ub

[Bug 948825] Re: Loggerhead unable to serve as deamon behind apache

2012-11-24 Thread neonkandi
I can confirm the same problem on Ubuntu 12.10 with Apache installed using all the default options sudo serve-branches file:///location/ --allow-writes #works without correct permissions being set sudo serve-branches file:///location/ #works, as long as permissions are set accordingly. sudo serv

[Bug 948825] Re: Loggerhead unable to serve as deamon behind apache

2012-06-13 Thread Tobi Schäfer
Confirming Annette’s report of serve-branches not working without --allow-writes switch: # serve-branches /opt/source/bzr & [5] 15623 serving on 0.0.0.0:8080 view at http://127.0.0.1:8080 # curl -I localhost:8080 HTTP/1.0 404 Not Found Server: PasteWSGIServer/0.5 Python/2.7.3 Date: Wed, 13 Jun 20

[Bug 948825] Re: Loggerhead unable to serve as deamon behind apache

2012-06-13 Thread William Grant
serve-branches seems to want a full URL, not just a path. so 'serve- branches file:///opt/source/bzr' should work. I'm not sure why --allow- writes relaxes that restriction. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.

[Bug 948825] Re: Loggerhead unable to serve as deamon behind apache

2012-08-09 Thread Annakan
Sorry I forgot to mention this : Python 2.7.3 Paste==1.7.5.1 PasteDeploy==1.5.0 loggerhead==1.18.1 wsgiref==0.1.2 bzr==2.6b1 .X. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/948825 Title: Loggerh

[Bug 948825] Re: Loggerhead unable to serve as deamon behind apache

2012-08-09 Thread Annakan
Hi. I have the same problem on a centos 6.2 and "absolute url" does not seem to fix the problem or me. (Like " file://var/repositories/" ) And trying " file://var/repositories/folder/branchFolder" i.e. pointing directly on a branch did not change anything. All test performed with serve-branch l

[Bug 948825] Re: Loggerhead unable to serve as deamon behind apache

2012-08-09 Thread Annakan
And I made a mistake in my testing :( The absolute url WORKS like file://var/repositories/ so it IS a workaround. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/948825 Title: Loggerhead unable to

[Bug 948825] Re: Loggerhead unable to serve as deamon behind apache

2012-07-05 Thread Tomas Lukosius
I am behind ngnix and I can confirm full URL fixes the problem for me. So I assume the problem is not with the proxies. The only issue I have now is when I open http://hostname/prefix for the first time the link generated for the subdirectory (bzr branch in this case) has no prefix in it, so tryin

[Bug 948825] Re: Loggerhead unable to serve as deamon behind apache

2012-08-16 Thread Pritschet, Andreas
Hi, after upgrading my 64bit server to Ubuntu 12.04 I had the exact same problem described above. I have loggerhead running behind an Apache instance, that does some authentication using Django and WSGI. As I'm using the same for a Download area, this cannot be an issue. After using the suggest

[Bug 948825] Re: Loggerhead unable to serve as deamon behind apache

2012-08-16 Thread Pritschet, Andreas
Changing line 32 in /etc/init.d/loggerhead from start-stop-daemon -p $PIDFILE -S --startas /usr/bin/serve-branches --chuid loggerhead --make-pidfile --background --chdir $served_branches -- --prefix=$prefix --port=$port --host=$host --log-folder /var/log/loggerhead 2>/dev/null to start-stop-daem

[Bug 948825] Re: Loggerhead unable to serve as deamon behind apache

2012-03-07 Thread Hospik
-- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/948825 Title: Loggerhead unable to serve as deamon behind apache To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source

[Bug 948825] Re: Loggerhead unable to serve as deamon behind apache

2012-03-07 Thread Hospik
Experimenting some more: Adding --allow-writes fixes things for me... This seems strange to me, maybe a permissions thing? However this is not really what I want as I would like to restrict write acces to ssh+bzr traffic. -- You received this bug notification because you are a member of Ubuntu B

[Bug 948825] Re: Loggerhead unable to serve as deamon behind apache

2012-05-17 Thread Annette v. Stockhausen
I'v got paste-deploy installed, but it doesn't work. It only works with --allow-writes. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/948825 Title: Loggerhead unable to serve as deamon behind apache