Nhiều ghi chú

Một ứng dụng web ghi chú bằng Markdown được thiết kế đơn giản.

Truy cập

  • Giao diện người dùng web: https://<server-ip>
  • Sign up and create an account immediately after first access.
  • Registration can be restricted later from the application settings.

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

  • Thư mục ứng dụng: /root/many-notes/
  • Tệp Docker Compose: /root/many-notes/docker-compose.yml
  • Database volume: /var/lib/docker/volumes/many-notes_database/_data
  • Logs storage: /var/lib/docker/volumes/many-notes_logs/_data
  • Private app data: /var/lib/docker/volumes/many-notes_private/_data
  • Typesense data: /var/lib/docker/volumes/many-notes_typesense/_data
  • Cấu hình trang web Nginx: /etc/nginx/sites-available/many-notes
  • Chứng chỉ SSL: /etc/nginx/ssl/

Quản lý dịch vụ

Docker:

cd /root/many-notes
docker compose ps
docker compose restart
docker compose logs -f

Nginx:

systemctl status nginx
systemctl restart nginx

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 /root/eigenfocus/docker-compose.yml Tệp tin để thiết lập tên miền của bạn: APP_URL=https://your.domain.com

3. Tái tạo các dịch vụ:

cd /root/many-notes/
docker compose up -d

4. 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/many-notes

5. Cài đặt Certbot:

apt install -y certbot python3-certbot-nginx

6. 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

7. Thay thế đường dẫn SSL trong cấu hình Nginx (phần TLS):

vim /etc/nginx/sites-available/many-notes
# 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;

8. Khởi động lại Nginx để áp dụng các thay đổi:

systemctl restart nginx

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

Thông tin ứng dụng