Magic World game server
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

84 lines
1.9 KiB

5 years ago
  1. #
  2. # Set the Glacier2 instance name.
  3. #
  4. Glacier2.InstanceName=MWServer
  5. #
  6. # The client-visible endpoint of Glacier2. This should be an endpoint
  7. # visible from the public Internet.
  8. #
  9. Glacier2.Client.Endpoints=ssl -p 4064 -t 10000 -h 127.0.0.1:tcp -p 4502 -t 10000 -h 127.0.0.1
  10. #
  11. # The server-visible endpoint of Glacier2. This endpoint is only
  12. # required if callbacks are needed (leave empty otherwise). This
  13. # should be an endpoint on an internal network (like 192.168.x.x), or
  14. # on the loopback, so that the server is not directly accessible from
  15. # the Internet.
  16. #
  17. Glacier2.Server.Endpoints=tcp -h 127.0.0.1
  18. #
  19. # The proxy of the session manager.
  20. #
  21. Glacier2.SessionManager=ChatSessionManager:tcp -h 127.0.0.1 -p 10001
  22. #
  23. # Accept only requests to the machine where the session manager is
  24. # running.
  25. #
  26. Glacier2.Filter.Address.Accept=127.0.0.1:10001
  27. #
  28. # For this demo, we use the null permissions verifier. This permissions
  29. # verifier allows any user-id / password combination.
  30. #
  31. Glacier2.PermissionsVerifier=MWServer/NullPermissionsVerifier
  32. #
  33. # The timeout for inactive sessions. If any client session is inactive
  34. # for longer than this value, the session expires and is removed. The
  35. # unit is seconds.
  36. #
  37. Glacier2.SessionTimeout=30
  38. #
  39. # Turn off buffering, it's not useful for the chat demo.
  40. #
  41. Glacier2.Server.Buffered=0
  42. Glacier2.Client.Buffered=0
  43. #
  44. # Security Tracing
  45. #
  46. # 0 = no security tracing
  47. # 1 = trace messages
  48. #
  49. #IceSSL.Trace.Security=1
  50. #
  51. # SSL Configuration
  52. #
  53. Ice.Plugin.IceSSL=IceSSL:createIceSSL
  54. IceSSL.DefaultDir=../certs
  55. IceSSL.CAs=cacert.pem
  56. IceSSL.CertFile=server.p12
  57. IceSSL.Password=password
  58. IceSSL.Keychain=../../../certs/glacier2.keychain
  59. IceSSL.KeychainPassword=password
  60. IceSSL.VerifyPeer=0
  61. #
  62. # Ice Tracing
  63. #
  64. #Ice.Trace.Network=1
  65. #Ice.Warn.Connections=1
  66. #Ice.Trace.Protocol=1
  67. #
  68. # We configure the server thread pool as we want the glacier2router
  69. # to be multi threaded.
  70. #
  71. Ice.ThreadPool.Server.Size=4
  72. Ice.ThreadPool.Server.SizeMax=10