This commit is contained in:
2025-05-26 00:04:15 +02:00
parent 694f52e40b
commit bd5da41b9d
3 changed files with 14 additions and 15 deletions

View File

@@ -51,5 +51,5 @@ rsync -r -v --rsync-path='sudo rsync' --progress -e ssh ~/Sync/delmar.bzh/nds/pu
### Copy from <folder> to another <host> ### Copy from <folder> to another <host>
```bash ```bash
rsync -r -av --rsync-path='sudo rsync' --progress -e ssh /mnt/data/docker/<folder> -p pleb@<host>:/mnt/data/docker/ rsync -r -av --rsync-path='sudo rsync' --progress -e ssh /path/to/source/<folder> -p pleb@<host>:/path/to/destination/
``` ```

View File

@@ -81,7 +81,7 @@ sudo vim /etc/caddy/Caddyfile
} }
auth.delmar.bzh { auth.delmar.bzh {
reverse_proxy pearl:62751 { reverse_proxy bob:62751 {
header_up Host {upstream_hostport} header_up Host {upstream_hostport}
} }
encode gzip zstd encode gzip zstd
@@ -122,12 +122,12 @@ cs.delmar.bzh {
} }
ctr.delmar.bzh { ctr.delmar.bzh {
reverse_proxy pearl:80 reverse_proxy sheldon:45512
encode gzip zstd encode gzip zstd
} }
cvs.delmar.bzh { cvs.delmar.bzh {
reverse_proxy pearl:3000 reverse_proxy sheldon:54268
encode gzip zstd encode gzip zstd
} }
@@ -137,7 +137,7 @@ dkr.delmar.bzh {
} }
dolibarr.delmar.bzh { dolibarr.delmar.bzh {
reverse_proxy pearl:64616 reverse_proxy sheldon:64616
encode gzip zstd encode gzip zstd
} }
@@ -183,7 +183,7 @@ kontadenn.delmar.bzh {
} }
minio.delmar.bzh { minio.delmar.bzh {
reverse_proxy pearl:9000 reverse_proxy sheldon:9000
encode gzip zstd encode gzip zstd
} }
@@ -217,7 +217,7 @@ penpot.delmar.bzh {
} }
rallly.delmar.bzh { rallly.delmar.bzh {
reverse_proxy pearl:17818 reverse_proxy sheldon:17818
encode gzip zstd encode gzip zstd
} }
@@ -240,7 +240,7 @@ tools.delmar.bzh {
} }
twip.delmar.bzh { twip.delmar.bzh {
reverse_proxy pearl:23473 reverse_proxy sheldon:23473
encode gzip zstd encode gzip zstd
} }
@@ -284,7 +284,6 @@ www.delmar.bzh {
file_server file_server
} }
} }
``` ```
```bash ```bash

View File

@@ -21,15 +21,15 @@ Enable one of provided systemd configuration:
```bash ```bash
ls -al /usr/share/camera-streamer/examples/ ls -al /usr/share/camera-streamer/examples/
systemctl enable /usr/share/camera-streamer/examples/camera-streamer-raspi-v3-12MP.service systemctl enable /usr/share/camera-streamer/examples/camera-streamer-<********>.service
systemctl start camera-streamer-raspi-v3-12MP systemctl start camera-streamer-<********>
``` ```
You can also copy an existing service and fine tune it: You can also copy an existing service and fine tune it:
```bash ```bash
cp /usr/share/camera-streamer/examples/camera-streamer-raspi-v3-12MP.service /etc/systemd/system/camera-streamer.service sudo cp /usr/share/camera-streamer/examples/camera-streamer-<********>.service /etc/systemd/system/camera-streamer.service
sudo vim /etc/systemd/system/camera-streamer.service sudo vim /etc/systemd/system/camera-streamer.service
systemctl enable camera-streamer sudo systemctl enable camera-streamer
systemctl start camera-streamer sudo systemctl start camera-streamer
``` ```