Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Nergale

#1
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.