DEV Community

Discussion on: Using Laravel Valet On Linux/Ubuntu! 🐘 🔑

Collapse
 
sahilkashyap64 profile image
Sahil kashyap • Edited

Also if you want to restart the apache2(I had difficulting while restarting apache)

  1. Turn off the nginx
sudo service nginx stop
  1. Then enable the apache
sudo systemctl enable apache2
  1. then
sudo systemctl start apache2  

or

sudo systemctl restart apache2