Hi,
Im setting up IRC Services on a only-ssl server. It needs to connect on the server unencrypted. So how can I open an unencrypted port allowing only local connections?
thanks so much
Howto allow only local connections for unencrypted port?
Code: Select all
listen 127.0.0.1:PORT;Code: Select all
listen 127.0.0.1:PORT {
options {
serversonly;
};
};