50% off tất cả các gói, thời gian có hạn. Bắt đầu từ $2.48/mo
seelf

seelf

seelf là một PaaS tự host. Git push để triển khai ứng dụng với tự động SSL, quản lý môi trường, và giao diện quản trị gọn gàng. Giải pháp thay thế nhẹ cho Coolify hoặc Dokku, tập trung vào sự đơn giản cho lập trình viên solo và nhóm nhỏ.

Version

Latest

Operating System

Ubuntu Server 24.04 LTS

Min. RAM

1 GB

IP Types

IPV4,IPV6

Access

  • Web interface: https://<server-ip>
  • Đăng nhập bằng email và mật khẩu admin đã thiết lập khi triển khai.
  •  Thông tin đăng nhập admin được lưu tại: /root/seelf/.env

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

  • Application directory: /root/seelf/
  • File môi trường (thông tin đăng nhập): /root/seelf/.env
  • Tệp Docker Compose: /root/seelf/compose.yml
  • Dữ liệu persistent của Seelf: /var/lib/docker/volumes/seelf_data/
  • Dữ liệu SSH của Seelf: /var/lib/docker/volumes/seelf_ssh/
  • Cấu hình site Nginx: /etc/nginx/sites-available/seelf
  • Đã bật site Nginx: /etc/nginx/sites-enabled/seelf
  • TLS certificate: /etc/nginx/ssl/fullchain.pem
  • Khóa riêng tư TLS: /etc/nginx/ssl/privkey.pem

Service Management

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

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

Restart:

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

View logs:

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 về đị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ả HTTP (cổng 80) và HTTPS (cổng 443) như sau:

vim /etc/nginx/sites-available/seelf

3. Install 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. Trình duyệt của bạn và truy cập: https://yourdomain.com

Xem thêm trong Self Hosted

Related apps.

Triển khai seelf ngay. From $2.48/mo.