aboutsummaryrefslogtreecommitdiffstats
path: root/docs/cookbook/server.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/cookbook/server.md')
-rw-r--r--docs/cookbook/server.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/cookbook/server.md b/docs/cookbook/server.md
new file mode 100644
index 0000000..056d8d8
--- /dev/null
+++ b/docs/cookbook/server.md
@@ -0,0 +1,16 @@
+# Dats on a Server
+
+After you create your dat and close your laptop, other people won't be able to access your data. You might want a server that is always running, that archives and mirrors your dats, so that your dats are accessible at all times of the day.
+
+## TLDR
+To host a dat on your server:
+
+```
+ npm install -g dat lil-pids add-to-systemd
+ mkdir ~/dats
+ echo "dat dat://ff34725120b2f3c5bd5028e4f61d14a45a22af48a7b12126d5d588becde88a93/ \
+ ~/dats/datprotocol \
+ --quiet" > ~/dats/services
+ sudo add-to-systemd dat-lil-pids $(which lil-pids) ~/dats/services ~/dats/pids
+ sudo systemctl start dat-lil-pids
+```