Ceili Cornelison cornelisonc
- Columbia, MO
- Sign in to view email
- ceilicornelison.com
View mongodb-s3-backup.sh
#!/bin/sh | |
# Make sure to: | |
# 1) Name this file `backup.sh` and place it in /home/ubuntu | |
# 2) Run sudo apt-get install awscli to install the AWSCLI | |
# 3) Run aws configure (enter s3-authorized IAM user and specify region) | |
# 4) Fill in DB host + name | |
# 5) Create S3 bucket for the backups and fill it in below (set a lifecycle rule to expire files older than X days in the bucket) | |
# 6) Run chmod +x backup.sh | |
# 7) Test it out via ./backup.sh |
View CustomNotification.php
<?php | |
//Store specific variables for the URL | |
$secretKey = "YourSecretKey"; | |
$storeId = YourNumericalStoreId; | |
//This is declaring variables for the notification mail function | |
$subject = "Notification Subject"; | |
$mailheader = "From: someone@yourwebpage.com \r\n"; |