seelf

Lightweight self-hosted deployment platform written in Go.

访问

  • Web interface: https://<server-ip>
  • Log in using the admin email and password defined during deployment.
  •  Admin credentials are stored in: /root/seelf/.env

重要文件和目录

  • 应用程序目录: /root/seelf/
  • Environment file (credentials): /root/seelf/.env
  • Docker Compose 文件: /root/seelf/compose.yml
  • Seelf persistent data: /var/lib/docker/volumes/seelf_data/
  • Seelf SSH data: /var/lib/docker/volumes/seelf_ssh/
  • Nginx 站点配置: /etc/nginx/sites-available/seelf
  • Enabled Nginx site: /etc/nginx/sites-enabled/seelf
  • TLS certificate: /etc/nginx/ssl/fullchain.pem
  • TLS private key: /etc/nginx/ssl/privkey.pem

服务管理

检查集装箱状态:

docker compose -f /root/seelf/compose.yml ps

重启:

docker compose -f /root/seelf/compose.yml restart

查看日志:

docker compose -f /root/seelf/compose.yml logs -f

为域名启用SSL

1. 将您的域名指向服务器IP地址。

2. 编辑 Nginx 配置文件并替换两处 server_name <IP>; 使用您的域名 (<your-domain>) 同时适用于 HTTP(端口 80)和 HTTPS(端口 443)的封堵:

vim /etc/nginx/sites-available/seelf

3. 安装 Certbot:

apt install -y certbot python3-certbot-nginx

4. 运行以下命令以生成有效的 Let’s Encrypt 证书:

certbot certonly --nginx --non-interactive --agree-tos --email [email protected] -d yourdomain.com

5. 在 Nginx 配置中替换 SSL 路径:

vim /etc/apache2/sites-available/seelf
# Before:
    # ssl_certificate /etc/nginx/ssl/fullchain.pem;
    # ssl_certificate_key /etc/nginx/ssl/privkey.pem;
# After:
    # ssl_certificate /etc/letsencrypt/live/yourdomain.com/fullchain.pem;
    # ssl_certificate_key /etc/letsencrypt/live/yourdomain.com/privkey.pem;

6. 重启 Nginx 以应用更改:

systemctl restart nginx

7. 打开浏览器并访问: https://yourdomain.com

申请详情