diff --git a/docs/manual/config/layer4/index.md b/docs/manual/config/layer4/index.md index b68d89c..c2da4ee 100644 --- a/docs/manual/config/layer4/index.md +++ b/docs/manual/config/layer4/index.md @@ -72,6 +72,7 @@ sync { {% endhighlight %} Additional settings: + | Name | Description | |-----------------|-------------| | batchSizeLimit | Files larger then this limit should not be batched into on transfer. Only makes sense with processes > 1 which prevents rsyncssh | @@ -627,7 +628,6 @@ Tunnels Lsyncd is able to start and manage external programs to provide a tunnel for data transfer. Additionally it can spawn multiple connections and load-balance connections among them. A tunnel is created through the `tunnel` function. -``` {% highlight lua %} sync { default.rsync, @@ -638,7 +638,6 @@ sync { source = "/home/user/src/", } {% endhighlight %} -``` You can then set the shell for the tunnel user to `/bin/false` and configure the rsyncd server side appropriately. diff --git a/docs/manual/examples/index.md b/docs/manual/examples/index.md index fdaf83a..2d8e9be 100644 --- a/docs/manual/examples/index.md +++ b/docs/manual/examples/index.md @@ -6,14 +6,16 @@ Layer 4 Examples ---------------- bash sync: -
+
+{% highlight lua %}
 sync{bash, source="/home/lonewolf/teste1", target="/home/lonewolf/teste2"}
-
+{% endhighlight %} rsyncssh option: -
-sync{default.rsyncssh,
+{% highlight lua %}
+sync{
+        default.rsyncssh,
         source="/var/www/live_site_resources",
         host="192.168.129.90",
         targetdir="/var/www/live_site_resources",
@@ -25,7 +27,7 @@ sync{default.rsyncssh,
                 _extra = {"--bwlimit=50000"},
         }
 }
-
+{% endhighlight %} Layer 3 Examples ----------------