Porovnávané verzie

Kľúč

  • Tento riadok sa pridal
  • Riadok je odstránený.
  • Formátovanie sa zmenilo.

...

Blok kódu
languagetext
themeConfluence
 openssl genrsa -out server.keypem 4096 

Generovanie certificate signing request

Blok kódu
languagetext
themeConfluence
 openssl req -new -key server.keypem -out server.csr

Generovanie self-signed certifikátu

Blok kódu
languagetext
themeConfluence
 openssl x509 -req -days 730 -in server.csr -signkey server.keypem -out server.crt 


2. Nastaviť TLS podporu v registroch pre kernel

Blok kódu
languageesl
themeConfluence
 HKEY_LOCAL_MACHINE\SOFTWARE\Ipesoft\<instalacia>\cfg_<aplikacia>\TLS_Server\TLS_CertFile = c:\<cesta>\server.crt
 HKEY_LOCAL_MACHINE\SOFTWARE\Ipesoft\<instalacia>\cfg_<aplikacia>\TLS_Server\TLS_KeyFile = c:\<cesta>\server.keypem
 HKEY_LOCAL_MACHINE\SOFTWARE\Ipesoft\<instalacia>\cfg_<aplikacia>\TLS_Server\TLS_RequiredLevel = <level>

...