mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2026-05-12 18:16:36 +00:00
Merge branch 'master' of github.com:tborychowski/self-hosted-cookbook
* 'master' of github.com:tborychowski/self-hosted-cookbook: Add KaiMail into the list (#32) formatting typo FlareSolverr cloudcmd
This commit is contained in:
@@ -98,6 +98,7 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and
|
|||||||
|
|
||||||
|
|
||||||
# Cloud & File Sharing
|
# Cloud & File Sharing
|
||||||
|
- [CloudCmd](apps/cloud/cloudcmd.md)
|
||||||
- [Filebrowser](apps/cloud/filebrowser.md)
|
- [Filebrowser](apps/cloud/filebrowser.md)
|
||||||
- [FileRun](apps/cloud/filerun.md)
|
- [FileRun](apps/cloud/filerun.md)
|
||||||
- [NextCloud](apps/cloud/nextcloud.md)
|
- [NextCloud](apps/cloud/nextcloud.md)
|
||||||
@@ -189,6 +190,7 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and
|
|||||||
- [simplelogin.io](https://simplelogin.io/) 🔗
|
- [simplelogin.io](https://simplelogin.io/) 🔗
|
||||||
- [simplelogin.io github repo](https://github.com/simple-login/app) 🔗
|
- [simplelogin.io github repo](https://github.com/simple-login/app) 🔗
|
||||||
- [Forward Email](https://forwardemail.net/en) 🔗 - Unlimited email addresses, custom domain, catch-all, wildcard, and disposable aliases (has free and paid plans).
|
- [Forward Email](https://forwardemail.net/en) 🔗 - Unlimited email addresses, custom domain, catch-all, wildcard, and disposable aliases (has free and paid plans).
|
||||||
|
- [KaiMail](https://kaimail.net) 🔗 - Email forwarding for custom domains with ARC/DKIM signing, SMTP sending, and webhook delivery (has free and paid plans).
|
||||||
- Tools
|
- Tools
|
||||||
- [verify domain for google](https://postmaster.google.com/managedomains) 🔗
|
- [verify domain for google](https://postmaster.google.com/managedomains) 🔗
|
||||||
- [remove IP from spam house](https://www.spamhaus.org/lookup/) 🔗
|
- [remove IP from spam house](https://www.spamhaus.org/lookup/) 🔗
|
||||||
@@ -308,6 +310,7 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and
|
|||||||
- [Crowdsec](apps/other/crowdsec.md)
|
- [Crowdsec](apps/other/crowdsec.md)
|
||||||
- [Firefox sync server](apps/other/firefox-sync.md)
|
- [Firefox sync server](apps/other/firefox-sync.md)
|
||||||
- [Firefox](apps/other/firefox.md)
|
- [Firefox](apps/other/firefox.md)
|
||||||
|
- [FlareSolverr](apps/other/flare-solverr.md)
|
||||||
- [LanguageTool server](apps/other/language-tool.md)
|
- [LanguageTool server](apps/other/language-tool.md)
|
||||||
- [Ntfy](apps/other/ntfy.md)
|
- [Ntfy](apps/other/ntfy.md)
|
||||||
- [OpenSpeedTest](apps/other/openspeedtest.md)
|
- [OpenSpeedTest](apps/other/openspeedtest.md)
|
||||||
@@ -317,6 +320,8 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and
|
|||||||
- [VPN client](apps/other/vpn.md)
|
- [VPN client](apps/other/vpn.md)
|
||||||
- [Windows](apps/other/windows.md)
|
- [Windows](apps/other/windows.md)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Photos
|
# Photos
|
||||||
- [Comparison table](apps/photos/comparison.md)
|
- [Comparison table](apps/photos/comparison.md)
|
||||||
- [Chevereto](apps/photos/chevereto.md)
|
- [Chevereto](apps/photos/chevereto.md)
|
||||||
|
|||||||
35
apps/cloud/cloudcmd.md
Normal file
35
apps/cloud/cloudcmd.md
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
# CloudCmd
|
||||||
|
|
||||||
|
- Fantastic web file manager with console and editor!
|
||||||
|
- Dual-panel interface.
|
||||||
|
- Easy to use and configure.
|
||||||
|
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
- [Homepage](https://cloudcmd.io/)
|
||||||
|
- [Github repo](https://github.com/coderaiser/cloudcmd)
|
||||||
|
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## docker-compose.yml
|
||||||
|
```yaml
|
||||||
|
services:
|
||||||
|
web:
|
||||||
|
image: coderaiser/cloudcmd
|
||||||
|
container_name: cloudcmd
|
||||||
|
environment:
|
||||||
|
- CLOUDCMD_CONTACT=false
|
||||||
|
- CLOUDCMD_COLUMNS=name-size
|
||||||
|
- CLOUDCMD_AUTH=true
|
||||||
|
- CLOUDCMD_USERNAME=admin
|
||||||
|
- CLOUDCMD_PASSWORD=admin
|
||||||
|
- CLOUDCMD_ROOT=/mnt
|
||||||
|
ports:
|
||||||
|
- 8000:8000
|
||||||
|
volumes:
|
||||||
|
- /local_path:/mnt
|
||||||
|
```
|
||||||
BIN
apps/cloud/cloudcmd.png
Normal file
BIN
apps/cloud/cloudcmd.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 595 KiB |
19
apps/other/flare-solverr.md
Normal file
19
apps/other/flare-solverr.md
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
# FlareSolverr
|
||||||
|
|
||||||
|
Proxy server to bypass Cloudflare protection. Can be used by other apps (e.g. Jackett) to bypass Cloudflare's human verification.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
- [Github repo](https://github.com/FlareSolverr/FlareSolverr)
|
||||||
|
|
||||||
|
|
||||||
|
## docker-compose.yml
|
||||||
|
```yml
|
||||||
|
services:
|
||||||
|
flaresolverr:
|
||||||
|
image: ghcr.io/flaresolverr/flaresolverr:latest
|
||||||
|
container_name: flaresolverr
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- 8191:8191
|
||||||
|
```
|
||||||
Reference in New Issue
Block a user