Hi,
I wanted to configure Wowza REST APIs over SSL and I was able to achieve that by editing the server.xml file and adding details in the section.
When I tried to login to the Engine manager, I am unable to login, what could be the issue ?
Here is my server.xml config related to REST API over ssl
<RESTInterface>
<Enable>true</Enable>
<IPAddress>*</IPAddress>
<Port>8087</Port>
<!-- none, basic, digest, remotehttp, digestfile -->
<AuthenticationMethod>digest</AuthenticationMethod>
<DiagnosticURLEnable>true</DiagnosticURLEnable>
<SSLConfig>
<Enable>true</Enable>
<KeyStorePath>C:\Program Files (x86)\Wowza Media Systems\Wowza Streaming Engine 4.8.0/conf/wowza-keystore.jks</KeyStorePath>
<KeyStorePassword>****</KeyStorePassword>
<KeyStoreType>JKS</KeyStoreType>
<SSLProtocol>TLS</SSLProtocol>
<Algorithm>SunX509</Algorithm>
<CipherSuites></CipherSuites>
<Protocols></Protocols>
</SSLConfig>