Agate+ (dual protocol server to serve gemini/http from one source)
-
@timconsidine
The way this post is titled might be a bit confusing. It sounds like Agate+ is a browser that can visit gemini:// and html:// sites, rather than a gemini server which supports both gemini and html browsers.@LoudLemur said in Agate+ (dual protocol gemini/http browser):
The way this post is titled might be a bit confusing.
err, yes, you're right - will fix somehow
-
@timconsidine The geminauts are going to love your simple solution to making html available!
I tried the installation just now. and it went well up to a point. It asked where it should be installed, and then this error happened:
Port GEMINI_PORT: 19 Failed to install app: 400 message: 19 for GEMINI_PORT is not in permitted range in ports
@LoudLemur said in Agate+ (dual protocol gemini/http browser):
It asked where it should be installed, and then this error happened
try port 1965 ?
maybe you had a keyboard moment : 19 is not right -
@LoudLemur said in Agate+ (dual protocol gemini/http browser):
It asked where it should be installed, and then this error happened
try port 1965 ?
maybe you had a keyboard moment : 19 is not right@timconsidine thanks!
"keyboard moment" ahaha!
fails, with conflicting port. (Already have agate running, which perhaps is using port 1965. Try again though on 1966 (when England won the World Cup!) and it works... until it gives an
App installation error: Installation failed: Unable to pull image docker_registry.domain.tld/cloudron-agate-plus:v2. registry error: {"reason" : "server error"", "statusCode": 500, "json":null}
By the way, this is using the "running multiple instances" method, even though this is the first agate+ instsance.
-
Testing it now...
- You need a
chmod +x cld.sh
in the repo. - The installation never completes for me. It gets stuck at
Waiting for propagation of newsite.malenfant.dev
even though the DNS is updated. The app doesn't seem to launch.
Could be something with the DNS on cloudflare... Log shows:
Jul 16 17:28:25 box:dns/waitfordns resolveIp: Checking A for newsite.malenfant.dev at 162.159.38.40 Jul 16 17:28:25 box:dns/waitfordns resolveIp: No A. Checking CNAME for newsite.malenfant.dev at 162.159.38.40 Jul 16 17:28:25 box:dns/waitfordns isChangeSynced: NS davina.ns.cloudflare.com (162.159.38.40) errored when resolve newsite.malenfant.dev (A): Error: queryCname ENODATA newsite.malenfant.dev
but if I
ping newsite.malenfant.dev
from the command line it gets resolved correctly... odd.Could it be that the domain is hardcoded in
cld.sh
?# Generate self-signed wildcard certificate for all subdomains echo "Generating self-signed wildcard certificate for *.appx.uk..." # Extract the base domain (appx.uk) from CLOUDRON_APP_DOMAIN BASE_DOMAIN="appx.uk" WILDCARD_DOMAIN="*.${BASE_DOMAIN}"
@DidierMalenfant I fixed that hard-coding
I was struggling with self-signed certs for the scenario where a cloudron users wants to deploy multiple instances of agate+, e.g. for different sites on different subdomains. Easy for one domain, not so easy for multiple.
Cloudrono handles this quite easily, but gemini protocol is quite tight on certs, and my 2nd/3rd test instances were failing.
So I have to make a wildcard self-signed cert to handle any subdomain like xxxx.example.com.
There is still some issue, because while xxxx.example.com and zzzz.example.com will be fine under this version, probably aaaa.test.com will not be. Need to do some more testing.
Uploading fixed file to repo in a mo.
- You need a
-
Tried just now with a new download. we had an error:
App is being installed. => Queued ... => Deleting old containers => Registering location agateplus.example.com ................ => Downloading image ..................................... App installation error: Installation failed: Unable to pull image docker_registry.domain.tld/cloudron-agate-plus:v2. registry error: {"reason":"server error","statusCode":500,"json":null}
During the course of testing this, we tried several ports (as it seemed that the default was occupied, perhaps by the previous effort, which was still using it.) We also tried a few sub-domains, as sometimes the port was accepted but the subdomain was already in use eg agateplus.example.com, agateplus2.example.com, agateplus3.example.com.
After we eventually manage to get agate+ running, how do we go about closing those ports again and stopping the "phantom" use of the sub-domains, which never worked anyway?
-
Tried just now with a new download. we had an error:
App is being installed. => Queued ... => Deleting old containers => Registering location agateplus.example.com ................ => Downloading image ..................................... App installation error: Installation failed: Unable to pull image docker_registry.domain.tld/cloudron-agate-plus:v2. registry error: {"reason":"server error","statusCode":500,"json":null}
During the course of testing this, we tried several ports (as it seemed that the default was occupied, perhaps by the previous effort, which was still using it.) We also tried a few sub-domains, as sometimes the port was accepted but the subdomain was already in use eg agateplus.example.com, agateplus2.example.com, agateplus3.example.com.
After we eventually manage to get agate+ running, how do we go about closing those ports again and stopping the "phantom" use of the sub-domains, which never worked anyway?
@LoudLemur couple of points raised :
-
cloudron only allows one assigned port like 1965 to one app. Once done, it's occupied/blocked. You need to uninstall the deployed app to clear it.
From CLI :
cloudron uninstall --app app.domain.tld
Or from the app dashboard 'Uninstall' option -
you gave a code shot which mentions "agateplus.example.com". I'm guessing you obscure the actual app URL which is fine and wise. But it also refers to a docker registry. That's an example.
Just to clarify, did you build the app and deploy it to your registry ?
That's necessary for custom apps, and that's probably why the 'unable to pull' message was generated.
I am still tweaking the handling of multiple deployments. Cloudron supports it, and agateplus too, but I am resolving some content caching issues.
Advice for now is stick to one deployment until I solve the cache issue.
-
-
Latest update works! Thanks for the fixes.
I'm going to play with it for a bit but I'll leave a few more things I noticed in case you want to address those too:
- If you do
git add --chmod=+x cld.sh
locally you can then commit the executable flag with your repo and skip a step in the README. - The
cld.sh
script should probably have aset -e
line at the top (after the#!/bin/bash
) to make sure the script stop executing if something goes wrong with one of the commands. - Currently everything in
/app/data
is owned byroot
and I believe agate itself is launched as a root owned app. It's probably safer to make all the files in in/app/data
owned bycloudron:cloudron
and launch programs with/usr/local/bin/gosu cloudron:cloudron
to run as the cloudron user. I might be off here but that was my understanding of recommended behavior looking at the documentation. Someone else can deny or confirm.
Great job on the app!
- If you do
-
@DidierMalenfant
Good points, thank you, will get on to them.
I'm needing to review deployment of multiple instances as it is not working 100%, but hoping to find a "cunning plan".
-
Is that really the address that you’re pulling the image from ? Or you spoofed it to hide the real one in an internet forum (searched and exposed by the great satan google) ?
If it’s the real one, it will never work.
You need to build the image locally
Push it to your docker repo
Then pull it from there. -
Is that really the address that you’re pulling the image from ? Or you spoofed it to hide the real one in an internet forum (searched and exposed by the great satan google) ?
If it’s the real one, it will never work.
You need to build the image locally
Push it to your docker repo
Then pull it from there.@timconsidine ha! thanks, tim. will keep trying.
-
Significant update to be uploaded to git.cloudron.io repo
Hopefully I've fixed the issues about installing multiple instances of this app.
Further testing underway before upload.