aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--support/doc/dependencies.md21
1 files changed, 3 insertions, 18 deletions
diff --git a/support/doc/dependencies.md b/support/doc/dependencies.md
index 257eab59e..a79a5aed2 100644
--- a/support/doc/dependencies.md
+++ b/support/doc/dependencies.md
@@ -66,29 +66,14 @@ $ sudo scl devtoolset-6 bash
66 66
67On a fresh install of [FreeBSD](https://www.freebsd.org), new system or new jail: 67On a fresh install of [FreeBSD](https://www.freebsd.org), new system or new jail:
68 68
69 1. edit `/etc/pkg/FreeBSD.conf` to use latest instead quaterly (installation was tested with the latest repository), as root: 69 1. bootstrap pkg, initialize db and install peertube's dependencies, always as root (sudo not yet installed):
70```
71# ee /etc/pkg/FreeBSD.conf
72```
73
74 change this line (11):
75```
76 url: "pkg+http://pkg.FreeBSD.org/${ABI}/quaterly",
77```
78
79 to:
80```
81 url: "pkg+http://pkg.FreeBSD.org/${ABI}/latest",
82```
83
84 2. bootstrap pkg, initialize db and install peertube's dependencies, always as root (sudo not yet installed):
85``` 70```
86# pkg 71# pkg
87# pkg update 72# pkg update
88# pkg install -y sudo bash wget git python nginx pkgconf vips postgresql96-server redis openssl node npm yarn ffmpeg unzip 73# pkg install -y sudo bash wget git python nginx pkgconf vips postgresql96-server redis openssl node npm yarn ffmpeg unzip
89``` 74```
90 75
91 3. Allow users in the wheel group (hope you don't forgot to add your user on wheel group!) to use sudo 76 2. Allow users in the wheel group (hope you don't forgot to add your user on wheel group!) to use sudo
92``` 77```
93# visudo 78# visudo
94``` 79```
@@ -98,7 +83,7 @@ On a fresh install of [FreeBSD](https://www.freebsd.org), new system or new jail
98%wheel ALL=(ALL) ALL 83%wheel ALL=(ALL) ALL
99``` 84```
100 85
101 4. Enable nginx, redis, postgresql services and initialize database 86 3. Enable nginx, redis, postgresql services and initialize database
102``` 87```
103# ee /etc/rc.conf 88# ee /etc/rc.conf
104``` 89```