mirror of
https://github.com/haiwen/seafile-admin-docs.git
synced 2025-12-25 18:22:48 +00:00
update some errors
This commit is contained in:
parent
660ae1dc9b
commit
5ff1de29c8
|
|
@ -163,18 +163,6 @@ Modify `nginx.conf` and add reverse proxy for services ***seafile*** and ***sead
|
|||
|
||||
=== "thumbnail"
|
||||
```conf
|
||||
location /thumbnail/ping {
|
||||
proxy_pass http://127.0.0.1:8084/ping;
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
|
||||
access_log /var/log/nginx/thumbnail.access.log;
|
||||
error_log /var/log/nginx/thumbnail.error.log;
|
||||
}
|
||||
|
||||
location /thumbnail {
|
||||
proxy_pass http://127.0.0.1:8084;
|
||||
proxy_http_version 1.1;
|
||||
|
|
|
|||
|
|
@ -170,7 +170,7 @@ Uncompress the package using tar:
|
|||
|
||||
```
|
||||
# Debian/Ubuntu
|
||||
tar xf seafile-pro-server_12.0.6_x86-64_Ubuntu.tar.gz
|
||||
tar xf seafile-pro-server_13.0.10_x86-64_Ubuntu.tar.gz
|
||||
```
|
||||
|
||||
Now you have:
|
||||
|
|
@ -185,7 +185,7 @@ $ tree -L 2 /opt/seafile
|
|||
│ ├── lib
|
||||
│ ├── lib64 -> lib
|
||||
│ └── pyvenv.cfg
|
||||
├── seafile-pro-server-12.0.6
|
||||
├── seafile-pro-server-13.0.10
|
||||
│ ├── check_init_admin.py
|
||||
│ ├── index_op.py
|
||||
│ ├── migrate-repo.py
|
||||
|
|
@ -219,15 +219,15 @@ $ tree -L 2 /opt/seafile
|
|||
│ ├── setup-seafile.sh
|
||||
│ ├── sql
|
||||
│ └── upgrade
|
||||
└── seafile-pro-server_12.0.6_x86-64_Ubuntu.tar.gz
|
||||
└── seafile-pro-server_13.0.10_x86-64_Ubuntu.tar.gz
|
||||
|
||||
```
|
||||
|
||||
!!! tip
|
||||
The names of the install packages differ for Seafile CE and Seafile PE. Using Seafile CE and Seafile PE 12.0.6 as an example, the names are as follows:
|
||||
The names of the install packages differ for Seafile CE and Seafile PE. Using Seafile CE and Seafile PE 13.0.10 as an example, the names are as follows:
|
||||
|
||||
* Seafile CE: `seafile-server_12.0.6_x86-86.tar.gz`; uncompressing into folder `seafile-server-12.0.6`
|
||||
* Seafile PE: `seafile-pro-server_12.0.6_x86-86.tar.gz`; uncompressing into folder `seafile-pro-server-12.0.6`
|
||||
* Seafile CE: `seafile-server_13.0.10_x86-86.tar.gz`; uncompressing into folder `seafile-server-13.0.10`
|
||||
* Seafile PE: `seafile-pro-server_13.0.10_x86-86.tar.gz`; uncompressing into folder `seafile-pro-server-13.0.10`
|
||||
|
||||
### Setting up Seafile Pro databases
|
||||
|
||||
|
|
@ -249,7 +249,7 @@ Run the script as user seafile:
|
|||
```
|
||||
|
||||
```
|
||||
cd seafile-pro-server-12.0.6
|
||||
cd seafile-pro-server-13.0.10
|
||||
./setup-seafile-mysql.sh
|
||||
|
||||
```
|
||||
|
|
@ -336,7 +336,7 @@ The directory layout then looks as follows:
|
|||
│ └── pyvenv.cfg
|
||||
├── seafile-data
|
||||
│ └── library-template
|
||||
├── seafile-pro-server-12.0.6
|
||||
├── seafile-pro-server-13.0.10
|
||||
│ ├── check_init_admin.py
|
||||
│ ├── index_op.py
|
||||
│ ├── migrate-repo.py
|
||||
|
|
@ -370,8 +370,8 @@ The directory layout then looks as follows:
|
|||
│ ├── setup-seafile.sh
|
||||
│ ├── sql
|
||||
│ └── upgrade
|
||||
├── seafile-pro-server_12.0.6_x86-64_Ubuntu.tar.gz
|
||||
├── seafile-server-latest -> seafile-pro-server-12.0.6
|
||||
├── seafile-pro-server_13.0.10_x86-64_Ubuntu.tar.gz
|
||||
├── seafile-server-latest -> seafile-pro-server-13.0.10
|
||||
└── seahub-data
|
||||
└── avatars
|
||||
```
|
||||
|
|
@ -522,7 +522,7 @@ Seafile uses the indexing server ElasticSearch to enable full text search.
|
|||
|
||||
Our recommendation for deploying ElasticSearch is using Docker. Detailed information about installing Docker on various Linux distributions is available at [Docker Docs](https://docs.docker.com/engine/install/).
|
||||
|
||||
Seafile PE 9.0 only supports ElasticSearch 7.x. Seafile PE 10.0, 11.0, 12.0 only supports ElasticSearch 8.x.
|
||||
Seafile PE 9.0 only supports ElasticSearch 7.x. Seafile PE 10.0, 11.0, 12.0, 13.0 only supports ElasticSearch 8.x.
|
||||
|
||||
We use ElasticSearch version 8.15.0 as an example in this section. Version 8.15.0 and newer version have been successfully tested with Seafile.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue