settings.bat 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. rem The hostname or address at which the management API listens.
  2. set API_HOST=127.0.0.1
  3. rem The port that the management API service binds to.
  4. set API_PORT=8080
  5. rem The port that the Alert service binds to.
  6. set ALERT_PORT=5194
  7. rem The port that the auth service binds to.
  8. set AUTH_PORT=5190
  9. rem The port that the BART service binds to.
  10. set BART_PORT=5195
  11. rem The port that the BOS service binds to.
  12. set BOS_PORT=5191
  13. rem The port that the chat nav service binds to.
  14. set CHAT_NAV_PORT=5193
  15. rem The port that the chat service binds to.
  16. set CHAT_PORT=5192
  17. rem The port that the admin service binds to.
  18. set ADMIN_PORT=5196
  19. rem The path to the SQLite database file. The file and DB schema are
  20. rem auto-created if they doesn't exist.
  21. set DB_PATH=oscar.sqlite
  22. rem Disable password check and auto-create new users at login time. Useful for
  23. rem quickly creating new accounts during development without having to register
  24. rem new users via the management API.
  25. set DISABLE_AUTH=true
  26. rem Crash the server in case it encounters a client message type it doesn't
  27. rem recognize. This makes failures obvious for debugging purposes.
  28. set FAIL_FAST=false
  29. rem Set logging granularity. Possible values: 'trace', 'debug', 'info', 'warn',
  30. rem 'error'.
  31. set LOG_LEVEL=info
  32. rem The hostname that AIM clients connect to in order to reach OSCAR services
  33. rem (auth, BOS, BUCP, etc). Make sure the hostname is reachable by all clients.
  34. rem For local development, the default loopback address should work provided the
  35. rem server and AIM client(s) are running on the same machine. For LAN-only
  36. rem clients, a private IP address (e.g. 192.168..) or hostname should suffice.
  37. rem For clients connecting over the Internet, specify your public IP address and
  38. rem ensure that TCP ports 5190-5196 are open on your firewall.
  39. set OSCAR_HOST=127.0.0.1