docs: Add Flowise example for --backend-port parameter

This commit is contained in:
wm
2026-01-19 14:31:23 +01:00
parent f0c1ba00c1
commit 3436707ccf
2 changed files with 8 additions and 2 deletions

View File

@@ -244,6 +244,7 @@ Der API-Benutzer benötigt folgende Berechtigungen in OPNsense:
| Version | Änderungen |
|---------|------------|
| 1.0.9 | Dokumentation für Flowise-Unterstützung (--backend-port) |
| 1.0.8 | HTTP Server Suche nach servername statt description |
| 1.0.7 | Listen-Adressen auf Port 80/443 gesetzt |
| 1.0.6 | Listen-Adressen hinzugefügt |

View File

@@ -8,7 +8,7 @@ set -Eeuo pipefail
# für eine neue n8n-Instanz über die OPNsense API.
# =============================================================================
SCRIPT_VERSION="1.0.8"
SCRIPT_VERSION="1.0.9"
# Debug mode: 0 = nur JSON, 1 = Logs auf stderr
DEBUG="${DEBUG:-0}"
@@ -72,10 +72,15 @@ Examples:
# Test API connection:
bash setup_nginx_proxy.sh --test-connection --debug
# Setup proxy:
# Setup proxy for n8n (default port 5678):
bash setup_nginx_proxy.sh --ctid 768736636 --hostname sb-1768736636 \
--fqdn sb-1768736636.userman.de --backend-ip 192.168.45.135
# Setup proxy for Flowise (port 3000):
bash setup_nginx_proxy.sh --ctid 768736637 --hostname fw-1768736637 \
--fqdn fw-1768736637.userman.de --backend-ip 192.168.45.136 \
--backend-port 3000
# With custom OPNsense IP:
bash setup_nginx_proxy.sh --opnsense-host 192.168.45.1 --list-certificates
EOF