dev.yaml 1.8 KB

12345678910111213141516171819202122232425262728
  1. server:
  2. apihost: "" # defaults to 127.0.0.1 or remote ip (SERVER_HOST) if DisableRemoteIPCheck is not set to true. SERVER_API_HOST if set
  3. apiport: "" # defaults to 8081 or HTTP_PORT (if set)
  4. grpchost: "" # defaults to 127.0.0.1 or remote ip (SERVER_HOST) if DisableRemoteIPCheck is not set to true. SERVER_GRPC_HOST if set.
  5. grpcport: "" # defaults to 50051 or GRPC_PORT (if set)
  6. masterkey: "" # defaults to 'secretkey' or MASTER_KEY (if set)
  7. allowedorigin: "" # defaults to '*' or CORS_ALLOWED_ORIGIN (if set)
  8. restbackend: "" # defaults to "on" or REST_BACKEND (if set)
  9. agentbackend: "" # defaults to "on" or AGENT_BACKEND (if set)
  10. clientmode: "" # defaults to "on" or CLIENT_MODE (if set)
  11. dnsmode: "" # defaults to "on" or DNS_MODE (if set)
  12. disableremoteipcheck: "" # defaults to "false" or DISABLE_REMOTE_IP_CHECK (if set)
  13. mongoconn:
  14. user: "" # defaults to "mongoadmin" or MONGO_ADMIN (if set)
  15. pass: "" # defaults to "mongopass" or MONGO_PASS (if set)
  16. host: "" # defaults to 127.0.0.1 or MONGO_HOST (if set)
  17. port: "" # defaults to 27017 or MONGO_PORT (if set)
  18. opts: '' # defaults to '/?authSource=admin' or MONGO_OPTS (if set)
  19. wg:
  20. keyrequired: "" # defaults to "". If set to "yes", a key is required for signing up for the comms network
  21. grpcwg: "" # defaults to "on" or SERVER_GRPC_WIREGUARD if set
  22. grpciface: "" # defaults to nm-grpc-wg or SERVER_GRPC_WG_INTERFACE if set
  23. grpcaddr: "" # defaults to 10.101.0.1 or SERVER_GRPC_WG_ADDRESS if set
  24. grpcaddrrange: "" # defaults to 10.101.0.0/16 or SERVER_GRPC_WG_ADDRESS_RANGE if set
  25. grpcendpoint: "" # defaults to SERVER_HOST if unset
  26. grpcport: "" # defaults to 50555 or SERVER_GRPC_WG_PORT if set
  27. pubkey: "" # defaults to generated value or SERVER_GRPC_WG_PUBKEY if set
  28. privkey: "" # defaults to generated value or SERVER_GRPC_WG_PRIVKEY if set