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: costin@ubuntu:~$ mkdir testare costin@ubuntu:~$ cd testare/ costin@ubuntu:~/testare$ echo MERGE! > index.html costin@ubuntu:~/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/) ....