wp-media / backwpup

BackWPup - WordPress Backup Plugin
https://backwpup.com
GNU General Public License v2.0
88 stars 36 forks source link

AWS S3 credentials and settings in wp-config file #100

Open gdelacc opened 4 years ago

gdelacc commented 4 years ago

Should be great set all S3 options in wp-config.php file like other plugins by security reasons and to avoid not admin access to config.

For example:

define( 'BACKWPUP_SETTINGS', serialize( array(
        'AWS-KEY-ID'          => '****************THVQ',
        'AWS-SECRET-KEY'  => '****************hgMK',
                'AWS-BUCKET' => 's3::bucket-name'
    ) ) );

image