# uhttpd
Lightweight server used for [[OpenWrt]]'s configuration framework (LuCi)
## Info page
https://openwrt.org/docs/guide-user/services/webserver/http.uhttpd
### Installation
(Should probably already be installed as part of [[OpenWrt]])
```bash
opkg update
opkg install uhttpd
```
### Start or stop
"uHTTPd also properly provides an init script `/etc/init.d/uhttpd` to start or stop the service and enable it at boot time."
```bash
cd /etc/init.d
./uhttpd
Available commands:
start Start the service
stop Stop the service
restart Restart the service
reload Reload configuration files (or restart if service does not implement reload)
enable Enable service autostart
disable Disable service autostart
./uhttpd reload
./uhttpd restart
```