diff --git a/README.md b/README.md index 5a32d44..6dde07a 100644 --- a/README.md +++ b/README.md @@ -14,4 +14,15 @@ Public documents and configurations pertaining to my homelab here at veritableva | Media Library | 8 | Jellyfin | | | Budget Software | 9 | FireFlyIII | | | Git Repos (version control) | 10 | Gitea | | -| Virtual Environment | 10 | Proxmox | | \ No newline at end of file +| Virtual Environment | 10 | Proxmox | | + + +# External Tools + +[ipleak.net](https://ipleak.net) + +## Anonymous VPS / Hosting + * [1984 Hosting](https://1984.hosting/) + * [NJalla](http://njallalafimoej5i4eg7vlnqjvmb6zhdh27qxcatdn647jtwwwui3nad.onion) + * [PacketPoint](http://packetz6ogg4hlzw3ba2d7gojvnyunxbwkatottpv34rk5fulddjgeid.onion/) + * [FlokiNET](https://billing.flokinet.is/index.php) \ No newline at end of file diff --git a/dockercompose/ServicesToTry.md b/dockercompose/ServicesToTry.md index a9f1b1a..1730591 100644 --- a/dockercompose/ServicesToTry.md +++ b/dockercompose/ServicesToTry.md @@ -39,6 +39,7 @@ ### Unsorted (unchecked) + * [Http2Pic](https://http2pic.haschek.at/) - API for taking pictures of webpages * Photorec * Testdisk * Bitcartcc diff --git a/dockercompose/actual-budget/actual-data/.migrate b/dockercompose/actual-budget/actual-data/.migrate new file mode 100644 index 0000000..ebc6b8f --- /dev/null +++ b/dockercompose/actual-budget/actual-data/.migrate @@ -0,0 +1,21 @@ +{ + "lastRun": "1702667624000-rename-nordigen-secrets.js", + "migrations": [ + { + "title": "1694360000000-create-folders.js", + "timestamp": 1714529040503 + }, + { + "title": "1694360479680-create-account-db.js", + "timestamp": 1714529040552 + }, + { + "title": "1694362247011-create-secret-table.js", + "timestamp": 1714529040568 + }, + { + "title": "1702667624000-rename-nordigen-secrets.js", + "timestamp": 1714529040568 + } + ] +} \ No newline at end of file diff --git a/dockercompose/actual-budget/actual-data/server-files/account.sqlite b/dockercompose/actual-budget/actual-data/server-files/account.sqlite new file mode 100644 index 0000000..32d774d Binary files /dev/null and b/dockercompose/actual-budget/actual-data/server-files/account.sqlite differ diff --git a/dockercompose/actual-budget/actual-data/user-files/file-e4894dcf-3443-4833-bd89-d3a7c5a4341f.blob b/dockercompose/actual-budget/actual-data/user-files/file-e4894dcf-3443-4833-bd89-d3a7c5a4341f.blob new file mode 100644 index 0000000..540be91 Binary files /dev/null and b/dockercompose/actual-budget/actual-data/user-files/file-e4894dcf-3443-4833-bd89-d3a7c5a4341f.blob differ diff --git a/dockercompose/actual-budget/actual-data/user-files/group-9e3901d2-074b-40ad-81c1-8f54146c58aa.sqlite b/dockercompose/actual-budget/actual-data/user-files/group-9e3901d2-074b-40ad-81c1-8f54146c58aa.sqlite new file mode 100644 index 0000000..2d9130f Binary files /dev/null and b/dockercompose/actual-budget/actual-data/user-files/group-9e3901d2-074b-40ad-81c1-8f54146c58aa.sqlite differ diff --git a/dockercompose/actual-budget/compose.yml b/dockercompose/actual-budget/compose.yml new file mode 100644 index 0000000..014dc11 --- /dev/null +++ b/dockercompose/actual-budget/compose.yml @@ -0,0 +1,23 @@ +version: '3' +services: + actual_server: + image: docker.io/actualbudget/actual-server:latest + ports: + # This line makes Actual available at port 5006 of the device you run the server on, + # i.e. http://localhost:5006. You can change the first number to change the port, if you want. + - '5006:5006' + # environment: + # Uncomment any of the lines below to set configuration options. + # - ACTUAL_HTTPS_KEY=/data/selfhost.key + # - ACTUAL_HTTPS_CERT=/data/selfhost.crt + # - ACTUAL_PORT=5006 + # - ACTUAL_UPLOAD_FILE_SYNC_SIZE_LIMIT_MB=20 + # - ACTUAL_UPLOAD_SYNC_ENCRYPTED_FILE_SYNC_SIZE_LIMIT_MB=50 + # - ACTUAL_UPLOAD_FILE_SIZE_LIMIT_MB=20 + # See all options and more details at https://actualbudget.github.io/docs/Installing/Configuration + # !! If you are not using any of these options, remove the 'environment:' tag entirely. + volumes: + # Change './actual-data' below to the path to the folder you want Actual to store its data in on your server. + # '/data' is the path Actual will look for its files in by default, so leave that as-is. + - ./actual-data:/data + restart: unless-stopped