This project implements a simple Linux-based web server in C using UNIX system programming concepts. It serves static files like HTML, CSS, JavaScript, and images.
- Handles HTTP GET requests.
- Serves static files from a specified directory (
www). - Supports concurrent client connections using threads.
- Implements basic error handling and logging.
gcc -o linux_web_server linux_web_server.c -lpthread./linux_web_serverOpen a browser and navigate to http://localhost:8080.