1
18.1 Legacy Series / Re: [18.1.10] Nextcloud Backup Issues
« on: July 23, 2018, 01:50:32 pm »
I'll be honest, if I am uploading my own configurations to my own Nextcloud server, then I should be able to send it without any encryption.
The choice to do so would be nice.
Right now i changed the following lines in "/usr/local/opnsense/mvc/app/library/OPNsense/Backup/Nextcloud.php":
$this->upload_file_content(
$url,
$username,
$password,
$backupdir,
$configname,
$confdata_enc
);
To this:
$this->upload_file_content(
$url,
$username,
$password,
$backupdir,
$configname,
$confdata
);
This uploads the data without any encryption.
The choice to do so would be nice.
Right now i changed the following lines in "/usr/local/opnsense/mvc/app/library/OPNsense/Backup/Nextcloud.php":
$this->upload_file_content(
$url,
$username,
$password,
$backupdir,
$configname,
$confdata_enc
);
To this:
$this->upload_file_content(
$url,
$username,
$password,
$backupdir,
$configname,
$confdata
);
This uploads the data without any encryption.