How to quickly enable a low-resource webserver
Have you ever wanted to just start a Webserver in a second, for a quick and dirty task but didn’t want to install a full LAMP/LEMP stack? This is possible with the help of a python module and here it is in action: [email protected]:~$ mkdir testare [email protected]:~$ cd testare/ [email protected]:~/testare$ echo MERGE! > index.html [email protected]:~/testare$ pushd $PWD; python3 -m http.server; popd ~/testare ~/testare Serving HTTP on 0.0.0.0 port 8000 (http://0.0.0.0:8000/) ....