Add AUR link and update caddy config

This commit is contained in:
2026-01-23 00:01:19 -05:00
parent 1b315c53b0
commit abc8c77c8e

View File

@@ -36,12 +36,21 @@ Below is my [Caddy][6] file config for phanpy.
```Caddyfile
http://phanpy.{$PRIVATE_ONION} {
@firstreq {
path /
header !Referer
}
redir @firstreq /wrap/index.html
header {
Content-Security-Policy "default-src 'self' 'unsafe-inline' social.balki.me wss://social.balki.me data: ;"
Referrer-Policy same-origin
}
reverse_proxy /wrap/* localhost:3242
root * /var/www/phanpy/
reverse_proxy /wrap/* unix//run/rls.sock
root * /usr/share/webapps/phanpy/
file_server
}
```
@@ -61,6 +70,10 @@ Let me know at `@balki@balki.me` in fediverse, if you find it useful
```bash
go install go.balki.me/remote-local-storage@latest
```
### AUR
- https://aur.archlinux.org/packages/remote-local-storage-git
- (PKGBUILD) https://gitea.balki.me/balki-aur/remote-local-storage
---