How are you accessing it without Cloudflare? How do you know that Lemmy is actually listening?
How are you accessing it without Cloudflare? How do you know that Lemmy is actually listening?
What’s the URL you using to access it without Cloudflare?
Edit: Also that curl tells me it’s not listening on that IP/port.
Can you access it without Cloudflare?
Does curl http://localhost:8536/
work?
You are using cloudflared right? Because normal (non-cloudflared) Cloudflare doesn’t support port 8536.
With dynamic DNS? Yeah it always has, as long as you can host a http server.
With a dynamic IP? It should do, the certs are only valid for 6 days for that reason.
You can host a page with an iframe, but you can’t directly change the DNS record to point to something that isn’t GitHub.
I think they were trying to say that the cage in front with the AP behind, acts as a directional antenna. Similar to how Yagi antennas have metal elements that aren’t connected in front of the actual antenna.
But I don’t know enough antenna theory to know if that’s correct.
Perhaps there was an easier lighter-weight way of doing this?
Yeah, SSH tunneling. What I would do (and have done in the past) is something like:
ssh -L 8080:192.168.0.1:80 myserver
That will forward port 8080 on your host to port 80 on 192.168.0.1, so you can access your router’s web UI with http://localhost:8080/
in your own web browser.
You can also setup full tunneling with SSH, but that requires messing around with SOCKS and I usually can’t be bothered.
Ahh sorry, I thought you meant you plugged it into the input side. If that’s the case then are you running anything that measures CPU usage? I run the TIG stack, it might be able to give you some hits. Also back to my original point which is already unlikely, if it’s a modified sinewave UPS, it can confuse some measuring devices while it’s on battery.
It’s weird to do this daily, but it’s possible that the UPS is doing a self test, which would drain the battery a little and the load is from charging it back up.
You have to be on the March update, then go to Developer options -> Linux environment, and enable it. Then ‘Terminal’ will appear in your apps drawer.
Ahh okay, that description kinda sounds like floppy drive power, but it probably is a proprietary thing.
Could also be slimline sata.
TCP and UDP can listen on the same port, DNS is a great example of such. You’d generally need it to be part of the same process as ports are generally bound to the same process
They don’t even need to be the same process. I’m pretty sure that’s just a common practice if something needs both protocols, but there’s nothing stopping you from having a web server on TCP 443 and a VPN server on UDP 443. Ports are an abstraction brought by each protocol, they aren’t in anyway related.
Reminds me of this skit: https://youtu.be/oOFlN_qTCf0
Not exactly the same, but an electron beam puts a lot of noise in the image: https://youtu.be/Uf4Ux4SlyT4
Also I’ve heard the international space station gets a lot of dead pixels on their cameras from cosmic radiation.
I’ve heard of it, but I didn’t think it was financially viable for an individual to pay for though.
Someone commented on another video that they saw the Ram Air Turbine extended. So they would’ve lost power, supporting your electrical fire theory. Also it seems extending the RAT disables some safeguards, that can cause the wheels to lock and catch fire.
The other video: https://youtu.be/EPiNC5JpEYs
I swear Lemmy comments for YouTube had a feature that let you open it for any page, but it seems the GitHub and Firefox page been deleted.
Edit: Looks like I’ve still got a fork: https://github.com/Steve-Tech/Reddit-Comments-for-YouTube (it says Reddit, but works for Lemmy too)
Yeah, YunoHost explains why
http://localhost:8536/
wouldn’t be working. If cloudflared and Lemmy are in separate containers you have to put an actual IP in, since localhost points to the container itself.