This project demonstrates how to set up a web server using BusyBox and bash script. It creates an HTTP server that serves a basic "Hello, World" page. The repository includes a straightforward bash script to automate the process. This project is ideal for those learning about lightweight web servers, embedded systems, or quick web service setups.
- Linux environment with BusyBox installed.
- Knowledge shell scripting.
If you have any questions, feel free to reach out at marioscloud@duck.com
- Clone the repository:
git clone https://github.com/marioscloud/BusyBox-Webserver-Hello
- Navigate to the project directory:
cd project_01
- Make executable the file webserver_hello.sh and execute the provided bash script::
chmod + ./webserver_hello.sh
- Execute the provided bash script::
./webserver_hello.sh
- Open your web browser and navigate to http://localhost:8080 to see the "Hello, World" message::
http://localhost:8080
- To stop the server, find the process ID (PID) and kill it::
ps aux | grep busybox sudo kill -9 <PID>
This README provides clear instructions on how to set up and run your BusyBox web server. Feel free to adjust any details to better suit your project's specifics. Thanks for reading.