We would like to connect a BI suite to the underlying database and are wondering where the PostgreSQL credentials for NocoDB stored.
Is it even possible to connect to it from an external connection?
We would like to connect a BI suite to the underlying database and are wondering where the PostgreSQL credentials for NocoDB stored.
Is it even possible to connect to it from an external connection?
@girish done
@girish Yes, 7.4.0
After some recent updates this weekend our Redash installation is now unresponsive. Attempting to restore, or clone a working backup to a new instance, throws this error.
An error occurred during the restore operation: Addons Error: Unexpected response code or HTTP error when piping /home/yellowtent/appsdata/dc95a87a-2048-4187-b2a7-7310de48e50a/postgresqldump to http://172.18.30.2:3000/databases/dbdc95a87a20484187b2a77310de48e50a/restore?access_token=REDACTED&username=REDACTED: status 408 complete false
Any help anyone could offer would be greatly appreciated.
Agreed, this would be very useful. Would love to be able to assign specific IP addresses to specific domains.
It would also be nice to be able to disable the "You are seeing this page because the DNS record of nn.nn.nn.nnn is set to this server's IP but Cloudron has no app configured for this domain." for http requests sent directly to the server IP.
Starting in October I began receiving hundreds of Let's Encrypt expiration notices sent to my email address. I began posting about this issue on the Let's Encrypt forums and the guys over there believe they have tracked it down to a potentially misconfigured acme-cloudron
acme client.
https://community.letsencrypt.org/t/receiving-expiration-emails-for-dozens-of-domains/165441
@robi I've managed to get this working using Digital Ocean Spaces on my Cloudron Nextcloud installation by following the instructions at this resource. This involved simply editing the config/config.php file to include the following:
'objectstore' =>
array (
'class' => '\\OC\\Files\\ObjectStore\\S3',
'arguments' =>
array (
'bucket' => 'yourbucketname',
'key' => 'YOURKEY',
'secret' => 'YOURSECRET',
'hostname' => 'nyc3.digitaloceanspaces.com',
'region' => 'nyc3',
'port' => 443,
'use_ssl' => true,
'use_path_style' => true,
),
),
);
I added this to the very end of my config.php, and before the last closing );
Functionality tested and working. Uploads and downloads happen directly within the DO Spaces bucket. Configuration persists between reboots.
I am new to Cloudron, so I am not certain if these changes will persist after updates to the Nextcloud app or Cloudron.