mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2025-05-13 21:46:53 +02:00
19 lines
601 B
Plaintext
19 lines
601 B
Plaintext
object UniServerModule: TUniServerModule
|
|
TempFolder = 'temp\'
|
|
Title = 'New Application'
|
|
SuppressErrors = []
|
|
Bindings = <>
|
|
SSL.SSLOptions.RootCertFile = 'root.pem'
|
|
SSL.SSLOptions.CertFile = 'cert.pem'
|
|
SSL.SSLOptions.KeyFile = 'key.pem'
|
|
SSL.SSLOptions.Method = sslvSSLv23
|
|
SSL.SSLOptions.SSLVersions = [sslvTLSv1_1, sslvTLSv1_2]
|
|
SSL.SSLOptions.Mode = sslmUnassigned
|
|
SSL.SSLOptions.VerifyMode = []
|
|
SSL.SSLOptions.VerifyDepth = 0
|
|
ConnectionFailureRecovery.ErrorMessage = 'Connection Error'
|
|
ConnectionFailureRecovery.RetryMessage = 'Retrying...'
|
|
Height = 480
|
|
Width = 640
|
|
end
|