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 withAll Buffer, Broker, Storage, and Host plugins
ProductNotiway Notify

Installation

Environment Variables

VariableRequiredDefaultDescription
Infra__Plugins__Auth__NameYesSet to NoAuth
Infra__Plugins__Auth__VersionYesPlugin 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.0
Do 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.