A web server is just any software that can be accessed with web network protocols. This can look like a lot of things. If you have Python installed you can start a web server right now by running python -m http.server. localhost:8000 in a browset would then let you browse files via the (local) web.
A web server is just any software that can be accessed with web network protocols. This can look like a lot of things. If you have Python installed you can start a web server right now by running
python -m http.server
. localhost:8000 in a browset would then let you browse files via the (local) web.What kind of server do you want to run?