From 42defe6d6fc695428dbea9bdb8be8a40ede9bc48 Mon Sep 17 00:00:00 2001 From: Jizhou Deng Date: Tue, 21 Oct 2025 14:53:14 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9Afix=20some=20errors?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manual/config/saml2_in_10.0.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/manual/config/saml2_in_10.0.md b/manual/config/saml2_in_10.0.md index 2909f56f..7c37837c 100644 --- a/manual/config/saml2_in_10.0.md +++ b/manual/config/saml2_in_10.0.md @@ -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 ```