Automatycznie

Automate workflows by connecting apps like Twitter, Slack, and more.

Dostęp do aplikacji

Otwórz przeglądarkę i przejdź do: http://<SERVER_IP>

First startup may take a few minutes; a temporary Nginx 502 during this time is normal.

Domyślne dane logowania:

Please do not forget to change your email and password from the settings page.

Ważne ścieżki

  • Katalog instalacyjny: /opt/automatisch
  • Project directory: /opt/automatisch
  • Plik Docker Compose: /opt/automatisch/docker-compose.yml
  • Application storage (volume): /var/lib/docker/volumes/automatisch_automatisch_storage/_data
  • PostgreSQL data (volume): /var/lib/docker/volumes/automatisch_postgres_data/_data
  • Redis data (volume): /var/lib/docker/volumes/automatisch_redis_data/_data
  • Konfiguracja NGINX: /etc/nginx/sites-available/automatisch
  • NGINX enabled site: /etc/nginx/sites-enabled/automatisch

Common Commands

Navigate to project:

cd /opt/automatisch

Wyświetl logi:

docker compose logs -f

Uruchom ponownie usługi:

docker compose restart

Stop / Start:

docker compose down
docker compose up -d

Sprawdź pojemniki:

docker ps

Usługi

  • Main: Automatisch web application, exposed on port 3000
  • Worker: Background job processor, internal
  • PostgreSQL: Database service, internal (default port 5432)
  • Redis: Queue and cache service, internal (default port 6379)

Włączanie protokołu SSL dla domeny

1. Skieruj swoją domenę na adres IP serwera.

2. Edytuj konfigurację Nginx i zamień oba elementy. server_name _; z Twoją domeną (<your-domain>):

vim /etc/nginx/sites-available/automatisch

3. Zainstaluj Certbot:

apt install -y certbot python3-certbot-nginx

4. Uruchom poniższe polecenie, aby wygenerować prawidłowy certyfikat Let’s Encrypt:

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

5. Restart Nginx to apply the changes:

systemctl restart nginx

6. Open your browser and visit: https://yourdomain.com

Szczegóły aplikacji