Put this in the project’s .vscode/settings.json
:
{
"lime.executable": "lix run lime"
}
Code language: JSON / JSON with Comments (json)
Put this in the project’s .vscode/settings.json
:
{
"lime.executable": "lix run lime"
}
Code language: JSON / JSON with Comments (json)
My issue is detailed here but I thought I’d summarize here basically how to get around it.
Turns out this is an issue with the BGW210 and port 443. If I do the same setup but on 8443 or something else, https works fine. Looking further, it turns out this is is a chronic issue with this and possibly other routers supplied by AT&T (see here, here and here). Trying to use IP forwarding or DMZ settings on the router doesn’t save whatever’s behind it from whatever filtering it’s doing. None of the firewall settings work.
Continue reading Fixing Issue With SSL Traffic on AT&T RouterI started with these instructions for just the icecast part but updated for FreeBSD 12.1. But left out the source client stuff I didn’t need (IceS is too limited features for me) and added the (very impotant imo!) ssl stuff to keep things secure. Install icecast:
pkg install icecast
Code language: Bash (bash)
Enable it:
echo 'icecast_enable="YES"' >> /etc/rc.conf
Code language: Bash (bash)
Continue reading Setting up Icecast Streaming server on FreeBSD