người

Nền tảng triển khai tự lưu trữ gọn nhẹ được viết bằng ngôn ngữ Go.

Truy cập

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

Các tập tin và thư mục quan trọng

  • Thư mục ứng dụng: /root/seelf/
  • Environment file (credentials): /root/seelf/.env
  • Tệp Docker Compose: /root/seelf/compose.yml
  • Seelf persistent data: /var/lib/docker/volumes/seelf_data/
  • Seelf SSH data: /var/lib/docker/volumes/seelf_ssh/
  • Cấu hình trang web Nginx: /etc/nginx/sites-available/seelf
  • Đã kích hoạt trang web Nginx: /etc/nginx/sites-enabled/seelf
  • Chứng chỉ TLS: /etc/nginx/ssl/fullchain.pem
  • Khóa riêng TLS: /etc/nginx/ssl/privkey.pem

Quản lý dịch vụ

Kiểm tra trạng thái container:

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

Khởi động lại:

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

Xem nhật ký:

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

Kích hoạt SSL với tên miền

1. Trỏ tên miền của bạn đến địa chỉ IP của máy chủ.

2. Chỉnh sửa cấu hình Nginx và thay thế cả hai server_name <IP>; với tên miền của bạn (<your-domain>) cho cả khối HTTP (cổng 80) và HTTPS (cổng 443):

vim /etc/nginx/sites-available/seelf

3. Cài đặt Certbot:

apt install -y certbot python3-certbot-nginx

4. Chạy lệnh sau để tạo chứng chỉ Let's Encrypt hợp lệ:

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

5. Thay thế đường dẫn SSL trong cấu hình Nginx:

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. Khởi động lại Nginx để áp dụng các thay đổi:

systemctl restart nginx

7. Mở trình duyệt của bạn và truy cập: https://yourdomain.com

Thông tin ứng dụng