Skip to content

Latest commit

 

History

History
executable file
·
39 lines (28 loc) · 1.07 KB

README.md

File metadata and controls

executable file
·
39 lines (28 loc) · 1.07 KB

GRBLSC (GRBL Manager for Embedded Computer)

Attenzione non installare su server online!!! alto rischio per la sicurezza!

GRBL for Small Computer

Testato e funzionante su TL703 e simili con SO OpenWrt

Funziona anche con RaspberryPi e simili con SO Linux

Installare:

php5

Guida:
Presa da wiki.openwrt.org

Installare PHP5:
   opkg update
   opkg install php5 php5-cgi

Installare UHTTPD:
   opkg update
   opkg install uhttpd

Aggiungere una nuova istanza sulla porta 81:
   uci set uhttpd.llmp=uhttpd
   uci set uhttpd.llmp.listen_http=81
   uci set uhttpd.llmp.home=/srv/www
   uci commit uhttpd

Creare la cartella in cui inserire lo script:
   mkdir -p $(uci get uhttpd.llmp.home)

Avviare il server UHTTPD:
   /etc/init.d/uhttpd restart
   /etc/init.d/uhttpd start
   /etc/init.d/uhttpd enable