Re: Problem with SSL
Thomas Schmidt <[email protected]> Sun, 12 Jan 2025 20:18:21 +0100
| Newsgroups | gmane.comp.audio.icecast.general |
|---|---|
| Message-ID | <CAGOm_d4__vAL5V47pOrj847n8-jxBUFYXxHF_jxhAEwJ2wKTgA@mail.gmail.com> |
Hi Ervin! > The problem is that it shows the same number of listeners on both connections. > My configuration is: > <!-- You may have multiple <listener> elements --> > <listen-socket> > <port>8080</port> > <!-- <bind-address>127.0.0.1</bind-address> --> > <!-- <shoutcast-mount>/stream</shoutcast-mount> --> > </listen-socket> > > <listen-socket> > <port>8443</port> > <ssl>1</ssl> > </listen-socket> This configuration simply opens two ports for the exact same server. If you need independent radio stations and listeners on both ports, you have to start Icecast twice. Why do you need SSL on a local Icecast? Keep in mind the SSL implementation of Icecast is very buggy. For example, some connections never close, keeping them locked forever. https://gitlab.xiph.org/xiph/icecast-server/-/issues/2445 You should use Icecast without SSL and usually for security reasons only on machines like localhost. Thomas