blob: 4fa5e10d4c9a7ec8981649c99c664863c10bc012 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#
# The server creates one single object adapter with the name
# "Throughput". The following line sets the endpoints for this
# adapter.
#
Throughput.Endpoints=default -p 10000 -h localhost
#
# For this test since the server is constantly receiving requests we
# want two threads in the pool.
#
Ice.ThreadPool.Server.Size=2
#
# No warnings please.
#
Ice.ThreadPool.Server.SizeWarn=0
#
# Warn about connection exceptions
#
Ice.Warn.Connections=1
#
# SSL Configuration
#
Ice.Plugin.IceSSL=IceSSL:createIceSSL
IceSSL.DefaultDir=../../../../certs
IceSSL.CertAuthFile=cacert.pem
IceSSL.CertFile=s_rsa1024.pfx
IceSSL.Password=password
IceSSL.Keychain=server.keychain
IceSSL.KeychainPassword=password
|