diff options
author | Farhan Khan <farhan@farhan.codes> | 2020-08-07 01:04:33 +0000 |
---|---|---|
committer | Farhan Khan <farhan@farhan.codes> | 2020-08-13 18:59:14 -0400 |
commit | 53c4215ef1d65300ffbf8d47cdb5a713558df528 (patch) | |
tree | 42af0edd46dc11704c4f2f8cea716a4aea2f5292 | |
parent | f6686a64afceb775d775e623c847d413fecf65f8 (diff) | |
download | pleroma-53c4215ef1d65300ffbf8d47cdb5a713558df528.tar.gz pleroma-53c4215ef1d65300ffbf8d47cdb5a713558df528.zip |
Updated some more instruction specifics.
-rw-r--r-- | docs/installation/freebsd_en.md | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/docs/installation/freebsd_en.md b/docs/installation/freebsd_en.md index 9c5caa4d3..ee42b9427 100644 --- a/docs/installation/freebsd_en.md +++ b/docs/installation/freebsd_en.md @@ -172,18 +172,16 @@ Copy the startup script to the correct location and make sure it's executable: ``` # cp /home/pleroma/pleroma/installation/freebsd/rc.d/pleroma /usr/local/etc/rc.d/pleroma -# chmod +x /etc/rc.d/pleroma +# chmod +x /usr/local/etc/rc.d/pleroma ``` -Add the following to `/etc/rc.conf`: +Update the `/etc/rc.conf` file with the following command: ``` -pleroma=YES -pleroma_home="/home/pleroma" -pleroma_user="pleroma" +# sysrc pleroma_enable=YES ``` -Run `# /etc/rc.d/pleroma start` to start Pleroma. +Now you can start pleroma with `# service pleroma start`. ## Conclusion |