{"id":47615619,"url":"https://github.com/tinylama/rsyslog-webui","last_synced_at":"2026-04-01T21:22:21.323Z","repository":{"id":54342694,"uuid":"261754351","full_name":"tinylama/rsyslog-webui","owner":"tinylama","description":"Web UI for rsyslog","archived":false,"fork":false,"pushed_at":"2026-03-21T06:28:26.000Z","size":3258,"stargazers_count":33,"open_issues_count":0,"forks_count":7,"subscribers_count":4,"default_branch":"master","last_synced_at":"2026-03-21T22:28:55.809Z","etag":null,"topics":["crontab","desktop","error-log","mobile","mysql","php","rsyslog","syslog"],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tinylama.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"docs/security.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-05-06T12:38:50.000Z","updated_at":"2026-03-21T06:28:28.000Z","dependencies_parsed_at":"2022-08-13T12:40:25.958Z","dependency_job_id":null,"html_url":"https://github.com/tinylama/rsyslog-webui","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/tinylama/rsyslog-webui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tinylama%2Frsyslog-webui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tinylama%2Frsyslog-webui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tinylama%2Frsyslog-webui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tinylama%2Frsyslog-webui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tinylama","download_url":"https://codeload.github.com/tinylama/rsyslog-webui/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tinylama%2Frsyslog-webui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31292167,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T21:15:39.731Z","status":"ssl_error","status_checked_at":"2026-04-01T21:15:34.046Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["crontab","desktop","error-log","mobile","mysql","php","rsyslog","syslog"],"created_at":"2026-04-01T21:22:19.410Z","updated_at":"2026-04-01T21:22:21.315Z","avatar_url":"https://github.com/tinylama.png","language":"PHP","readme":"# rsyslog-webui\r\n\r\n**Release 1.1.0** — see [CHANGELOG.md](CHANGELOG.md).\r\n\r\n`rsyslog-webui` is a web interface for browsing syslog events written by rsyslog into MySQL.  \r\nIt includes live search, live tail, role-based access, optional Microsoft Entra ID sign-in, and MFA options (TOTP and passkeys).\r\n\r\n## Quick Start (Docker)\r\n\r\n### Public / production (HTTPS on 80 and 443)\r\n\r\nThis is the **default deployment path** when the UI is reachable on the internet (for example behind Cloudflare). `docker/tls.env.example` includes `COMPOSE_PROFILES=tls`, so Traefik starts without passing `--profile tls`.\r\n\r\n1. Copy and edit secrets (domain, Let’s Encrypt email, Cloudflare DNS token, app passwords):\r\n\r\n   ```bash\r\n   cp docker/tls.env.example .env.tls\r\n   ```\r\n\r\n2. Start:\r\n\r\n   ```bash\r\n   docker compose --env-file .env.tls up -d --build\r\n   ```\r\n\r\n3. Open your hostname over HTTPS (for example `https://logs.example.com`). On first login, create your admin username and strong password.\r\n\r\n4. Send a test syslog line to the collector:\r\n\r\n   ```bash\r\n   logger -n 127.0.0.1 -P 5514 -d -t rsyslog-webui-test \"hello from host\"\r\n   ```\r\n\r\nAlternate compose files with the same `.env.tls`: `docker-compose.tls.yml` (standalone TLS stack) or `docker-compose.tls-manual.yml` (your own PEM files). Details: [docs/deployment.md](docs/deployment.md) and [docker/TLS.md](docker/TLS.md).\r\n\r\n### Local development (HTTP only, no Traefik)\r\n\r\n1. Start:\r\n\r\n   ```bash\r\n   docker compose up --build -d\r\n   ```\r\n\r\n2. Open `http://localhost:8080` (override with `WEB_PORT`).\r\n\r\n3. On first login, create your admin username and strong password.\r\n\r\n4. Test the collector as above.\r\n\r\nCollector notes:\r\n\r\n- Development and TLS/production stacks both accept network syslog on `5514` (TCP/UDP).\r\n- The collector only forwards incoming network messages to MySQL; it does not seed demo logs.\r\n- Producers can alternatively write directly to MySQL on the **host** port (default `3306`, override with `MYSQL_HOST_PORT`) via `ommysql`.\r\n\r\nPowerShell port override example (dev stack):\r\n\r\n```powershell\r\n$env:WEB_PORT='8888'\r\ndocker compose up --build -d\r\n```\r\n\r\n## What You Get\r\n\r\n- Live syslog table with debounced keyword/filterset search.\r\n- Live polling (tail-like updates) with manual refresh controls.\r\n- Admin directory for local and Microsoft-backed users.\r\n- Admin audit logs for sign-in attempts, access decisions, and email delivery events.\r\n- Optional Entra ID OIDC + PKCE authentication flow.\r\n- MFA with TOTP and WebAuthn passkeys.\r\n- Password reset / email verification via Microsoft Graph mail.\r\n\r\n## Documentation Map\r\n\r\n- [Installation](docs/installation.md)\r\n- [Configuration](docs/configuration.md)\r\n- [Authentication and MFA](docs/authentication.md)\r\n- [Deployment and TLS](docs/deployment.md)\r\n- [Architecture](docs/architecture.md)\r\n- [Testing](docs/testing.md)\r\n- [Security](docs/security.md)\r\n- [Troubleshooting](docs/troubleshooting.md)\r\n\r\nTLS deployment options (all use `.env.tls` from `docker/tls.env.example`):\r\n\r\n- **Recommended:** main `docker-compose.yml` — `docker compose --env-file .env.tls up -d --build` (`COMPOSE_PROFILES=tls` is already in the example file)\r\n- Equivalent standalone file: `docker-compose.tls.yml` — same Cloudflare DNS-01 ACME variables\r\n- Manual PEM files: `docker-compose.tls-manual.yml` — `docker/certs/tls.crt` and `docker/certs/tls.key` (no Cloudflare API key)\r\n\r\nIf your `.env.tls` does not set `COMPOSE_PROFILES=tls`, pass `--profile tls` when using the main compose file.\r\n\r\nDetails: [docs/deployment.md](docs/deployment.md) and [docker/TLS.md](docker/TLS.md).\r\n\r\n## Security Notice\r\n\r\n- Never commit real domains, personal emails, API tokens, client secrets, or production credentials.\r\n- Keep `config.php`, `.env*`, and any private secrets outside version control.\r\n- If credentials were ever committed, rotate them immediately and audit repository history (including forks and mirrors) for exposure.\r\n\r\n## Screenshots\r\n\r\n### Mobile\r\n\r\n![Mobile](/images/mobile-screenshot.jpg?raw=true \"Mobile\")\r\n\r\n### Desktop\r\n\r\n![Desktop](/images/screenshot.jpg?raw=true \"Desktop\")\r\n\r\n### Admin Panel\r\n\r\n![Desktop](/images/admin.jpg?raw=true \"Admin Panel\")\r\n\r\n---\r\n\r\nOriginal upstream inspiration: [hmsdao/bootstrap-rsyslog-ui](https://github.com/hmsdao/bootstrap-rsyslog-ui)\r\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftinylama%2Frsyslog-webui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftinylama%2Frsyslog-webui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftinylama%2Frsyslog-webui/lists"}