#!/bin/sh
set -eu

cat >&2 <<'EOF'
NiceOS EdgeShield runs in immutable container mode.
This helper no longer generates or rewrites configuration inside the container.

Configure WAF/observability through Docker Compose/Kubernetes mounted config files:
  /etc/nginx/conf.d/60-edgeshield-waf-observability.conf
  /etc/edgeshield/waf/engine-mode.conf
  /etc/edgeshield/waf/modsecurity.conf

Examples are installed under:
  /usr/share/edgeshield/examples/
EOF

if command -v nginx >/dev/null 2>&1; then
  nginx -t
fi
