fix:fix some errors

This commit is contained in:
Jizhou Deng 2025-10-21 14:53:14 +08:00
parent 0702b0d68e
commit 42defe6d6f

View File

@ -29,13 +29,14 @@ Create certs dir
=== "Binary Deployment"
If you deploy Seafile using the binary package, the default installation and data path is **/opt/seafile**. If you do not deploy Seafile to this directory, please check your actual deployment path.
```sh
mkdir -p /opt/seafile/seahub-data/certs
cd /opt/seafile/seahub-data
mkdir certs
```
The SP certificate can be generated by the openssl command, or you can apply to the certificate manufacturer, it is up to you. For example, generate the SP certs using the following command:
```sh
cd /opt/seafile/seahub-data/certs
cd certs
openssl req -x509 -nodes -days 3650 -newkey rsa:2048 -keyout sp.key -out sp.crt
```