Hi,
some time ago I successfully set up several servers with webinterface access via https on Debian Jessie (urbackup-server 2.0.32 probably).
However, in the latest Debian Stretch (stable OS fresh installation with Apache 2.4.25 and urbackup-server 2.1.19), the webinterface is loaded partially only.
Thank you Uroni. Before I posting here, I tested a solution from Dominic, unfortunately without success (of course it is possible that I made some mistakes).
I realize this is really late but I thought I’d put this out there because it took me a while to figure this out. I just installed urbackup 2.1.19, lighttpd 1.4.45 on Centos 7.
I seemed to be having a similar issue with lighttpd and fastcgi where my screen would show the urbackup frame but then sit and spin. I noticed in the logs I was getting an HTTP 404 when the system tried to “POST /urbackup/x?a=login”. I added a line to fastcgi.conf:
fastcgi.server = (
“/urbackup/x” =>
(( “host” => “127.0.0.1”,
“port” => 55413, <- put a comma on the end of this line
“check-local” => “disable” <- add this line (no comma)
))
)
Once I restarted lighttpd I was able to get a login prompt and use SSL to get to the server. Instead of a HTTP 404 I now get a HTTP 200 OK
Not sure if this will fix the issue with Apache but it did fix my issue with lighttpd. Thought I would share. Hopefully it will save someone some time.
Hi, thanks a ton for this!
I was going in circles trying to find the solution how to get ssl access via lighttpd working, i had the same issue where the page would load (progress bar at the top just seems to go on forever, looking like this:
Also found the error was "GET /x HTTP/2.0" 404 in the access.log for lighttpd (changed the document-root to /usr/share/urbackup/www).
Could not find a solution, and finally found your solution, which i can confirm works!
Again, thanks a lot!
By the way, adding “index.htm” as a valid index was needed too:
For completion and reference, these were the steps it took on vanilla Debian bookworm (from the top of my head):
generate/obtain (self-signed) certificate and private key, save in concatenated form in /etc/lighttpd/server.pem