docker-compose.yml
文件配置
替换说明
- 将
/var/www/siyuan/
替换为你的实际物理路径。
- 将
Password
替换为你的访问密码。
version: "3.9"
services:
siyuan:
image: b3log/siyuan
container_name: siyuan
restart: always
ports:
- 6806:6806
volumes:
- ./:/siyuan/workspace
command:
- "--workspace=/siyuan/workspace/"
- "--lang=zh_CN"
- "--accessAuthCode=<password>"
反向代理配置
Nginx配置替换说明
- 将
your_domain.com
替换为你自己的域名。
- 将
path
替换为你的SSL证书的实际路径。
upstream siyuan {
server 127.0.0.1:6806;
}
server {
listen 80;
listen [::]:80;
server_name your_domain.com;
location / {
return 301 https://$host$request_uri;
}
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name your_domain.com;
ssl_certificate path/fullchain.cer;
ssl_certificate_key path/file.key;
client_max_body_size 0;
location / {
proxy_pass http://siyuan;
proxy_set_header HOST $host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location /ws {
proxy_pass http://siyuan;
proxy_read_timeout 60s;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'Upgrade';
}
}