- Установлен BigBlueButton с Greenlight v3 frontend - Настроен SMTP через Microsoft 365 Relay (aiimpress-com0e.mail.protection.outlook.com:25) - Email отправка работает: noreply@ai-impress.com - Доступ: https://bbb.ai-impress.com - Настроена интеграция с Traefik для SSL - Включены: запись вебинаров (90 дней), webhooks для n8n, Prometheus экспорт - Локаль: русский язык (ru-RU) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
12 lines
266 B
Bash
Executable file
12 lines
266 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# get owner of /app
|
|
OWNER="$(stat -c '%u' "/app")"
|
|
GROUP="$(stat -c '%g' "/app")"
|
|
useradd --home-dir /tmp -u $OWNER user || /bin/true
|
|
|
|
# run with same user to avoid any issues
|
|
# with file permissions
|
|
. /root/.nvm/nvm.sh
|
|
gosu $OWNER:$GROUP bash -c "$@"
|
|
|