settings.bat 1.5 KB

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