this post was submitted on 15 Apr 2021
26 points (100.0% liked)
Open Source
33091 readers
350 users here now
All about open source! Feel free to ask questions, and share news, and interesting stuff!
Useful Links
- Open Source Initiative
- Free Software Foundation
- Electronic Frontier Foundation
- Software Freedom Conservancy
- It's FOSS
- Android FOSS Apps Megathread
Rules
- Posts must be relevant to the open source ideology
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon from opensource.org, but we are not affiliated with them.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Hello! A CDN is just a webserver, with some extra configuration at the network level.
If you're unfamiliar with how BGP routing works between Internet operators, all you have to know is that each operator (AS - Autonomous System) has links to others, and can decide:
A CDN is more or less an IP address announced from many places, pointing to different servers depending on where you access it from, but with a single TLS certificate for HTTPS. So if you try to reach it from AT&T, you'll get traffic directed to a datacenter in USA, etc..
So, on a system level, it's REALLY easy to deploy a CDN. It's just a webserver. On a network level, it's more complicated because you need your own IP block that's announced on your own network. In fact, that's not entirely true as you can find (very costly) network operators that'll do that for you.
Did i answer your question? :)
This did explain to me what a CDN is/how it works yes! Thank you! I just have now to learn or try to understand exactly how could this possibly be set up.