This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=Runs daily restic maintenance script | |
[Service] | |
Type=oneshot | |
ExecStart=/etc/restic/restic-maintenance-daily.sh | |
User=restic |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/dev/* | |
/home/*/.bash_history | |
/home/*/.cache/chromium | |
/home/*/.local/share/Trash | |
/home/*/.mozilla/firefox/*/Cache | |
/home/*/Documents/Exclude/* | |
/lib/modules/*/volatile/.mounted | |
/media/* | |
/mnt/* | |
/proc/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=Runs daily aws sync script | |
[Service] | |
Type=oneshot | |
ExecStart=/etc/restic/aws.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#: Title : restic | |
#: Date : July 22 2018 | |
#: Author : Matt Vance | |
#: Version : 1.0 | |
#: Description : Script to fully sytem backlup | |
#: License : MIT License (MIT) | |
# Copyright (C) 2018 Matthew Vance |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#: Title : restic-init-local | |
#: Date : July 16 2018 | |
#: Author : Matt Vance | |
#: Version : 1.0 | |
#: Description : Script to create local restic repo | |
#: License : MIT License (MIT) | |
# Copyright (C) 2018 Matthew Vance |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#: Title : restic | |
#: Date : July 15 2018 | |
#: Author : Matt Vance | |
#: Version : 1.1 | |
#: Description : Script to fully sytem backlup | |
#: License : MIT License (MIT) | |
# Copyright (C) 2019 Matthew Vance |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#: Title : restic | |
#: Date : October 13, 2018 | |
#: Author : Matt Vance | |
#: Version : 1.0 | |
#: Description : Script to run regular restic backups | |
#: License : MIT License (MIT) | |
# Copyright (C) 2018 Matthew Vance |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bind 192.168.1.106:8889 | |
tls /etc/caddy/ssl/host_name-bundle.pem /etc/caddy/ssl/end_device-key.pem { | |
protocols tls1.2 tls1.3 | |
} | |
# Reverse proxy to rclone restic rest service | |
proxy / localhost:8080 { | |
# health_check / | |
transparent | |
max_conns 1024 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#: Title : restic unlock | |
#: Date : April 26, 2019 | |
#: Author : Matt Vance | |
#: Version : 1.0 | |
#: Description : Script to manually unlock repo | |
#: License : MIT License (MIT) | |
# Copyright (C) 2019 Matthew Vance |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#: Title : restic stats | |
#: Date : October 14, 2018 | |
#: Author : Matt Vance | |
#: Version : 1.0 | |
#: Description : Script to fully sytem backlup | |
#: License : MIT License (MIT) | |
# Copyright (C) 2018 Matthew Vance |