info.html 1.1 KB

12345678910111213141516171819202122232425262728
  1. <html>
  2. <head>
  3. <title>ArOZ Online Web-Socket Server</title>
  4. <style>
  5. .padded{
  6. padding:20px;
  7. }
  8. </style>
  9. </head>
  10. <body>
  11. <div class="padded">
  12. <div class="padded">
  13. <h3>ArOZ Online Web-Socket Server (Reflector)</h3>
  14. <p>This is a ArOZ Online background services that operate using WebSocket Technology.<br>
  15. This websocket reflects all the message coming in and out to other client using ws-broadcast.<br>
  16. Please refer to the ao_module API for more information on how to send out a aowss package properly.
  17. </p>
  18. <p>System powered by golang and gorilla/websocket package.<br>
  19. More information can be found <a href="https://github.com/gorilla/websocket">here</a>.</p>
  20. <br><br>
  21. <mark>WARNING! WEBSOCKET COMMUNICATION DO NOT HAVE BUILD IN SECURITY / ENCRYPTION. PLEASE DO NOT SEND ANY OF THE CONFIDENTIAL INFORMATION VIA PLAIN TEXT FORMAT.</mark>
  22. <br>
  23. <p>Connect to websocket with ws://{your_ip_here}:65530 (default port for ArOZ Online Websocket Server Services)</p>
  24. <p>Licensed under BSD License (Same as the gorilla websocket license). Developed by IMUS Laboratory for experimental purposes.</p>
  25. </div>
  26. </div>
  27. </body>
  28. </html>