NoAuth
Cloud Agnostic
Open Source
Accepts all connections without any authentication. Creates a default anonymous identity for each connection. For local development and testing only — never use in production.
Source code: Notiway.Plugins.Portable.Auth.NoAuth
Compatibility
| Compatible with | All Buffer, Broker, Storage, and Host plugins |
| Product | Notiway Notify |
Installation
Environment Variables
| Variable | Required | Default | Description |
|---|---|---|---|
Infra__Plugins__Auth__Name | Yes | — | Set to NoAuth |
Infra__Plugins__Auth__Version | Yes | — | Plugin version (e.g., 0.9.0) |
Infrastructure
No infrastructure setup required.
Docker Compose
docker-compose.yml
services:
notiway:
image: notiway/notify:portable-0.6.0
ports:
- "5000:8080"
environment:
- Infra__Plugins__Auth__Name=NoAuth
- Infra__Plugins__Auth__Version=0.9.0Do not use NoAuth in production. This plugin disables all authentication and allows any client to connect to the gateway. It is intended for local development and testing only. For production deployments, use the JWT plugin.