Tutorials

Web server

APACHE  shell

APACHE

shell
service apache2 start
  • avviare web server apache2 
shell
service apache2 stop
  • stoppare web server apache2 
shell
cd /var/www/html
  • directory dove caricare file sul web server 

PYTHON

shell
python3 -m http.server 80
  • avviare web server python sulla porta 80 
shell
python3 -m http.server 443
  • avviare web server python sulla porta 443 
shell
python3 -m http.server 8000
  • avviare web server python sulla porta 8000