This commit introduces detailed documentation for deploying the Intrusion Detection System (IDS) on AlmaLinux 9, including setup scripts, MikroTik router configuration, and update procedures via git. It also includes the syslog parser script for processing router logs and saving them to PostgreSQL. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 7a657272-55ba-4a79-9a2e-f1ed9bc7a528 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: b2b01a4a-55da-4f33-9143-6bf0399e0a03 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/449cf7c4-c97a-45ae-8234-e5c5b8d6a84f/7a657272-55ba-4a79-9a2e-f1ed9bc7a528/c9ITWqD
16 lines
356 B
Plaintext
16 lines
356 B
Plaintext
# Database PostgreSQL
|
|
PGHOST=localhost
|
|
PGPORT=5432
|
|
PGDATABASE=ids_database
|
|
PGUSER=ids_user
|
|
PGPASSWORD=ids_password_change_me
|
|
|
|
# Session Secret (genera una stringa random sicura)
|
|
SESSION_SECRET=change_me_to_random_string_minimum_32_chars
|
|
|
|
# Python Backend URL (per frontend)
|
|
VITE_PYTHON_API_URL=http://localhost:8000
|
|
|
|
# Node Environment
|
|
NODE_ENV=production
|