-1

I got a problem on restaring apache2 after configuring all the thing regarding invoice ninja https://www.youtube.com/watch?v=zNO5q2gwCTA

codedge
  • 4,754
  • 2
  • 22
  • 38
srinivasan
  • 31
  • 5
  • Please go read [ask]. What you want to know needs to be described directly inside your question. Use your _words_, instead of just pointing us to a video uploaded somewhere externally. – CBroe Oct 04 '17 at 08:14
  • OK i will follow here after – srinivasan Oct 21 '17 at 06:15

1 Answers1

0

Since you have used Virtual Host, I think there lies the problem. By default you will have /etc/apache2/sites-available make sure the apache2 is pointing to the virtual host that you have created ininja.conf.

By default apache2 points to 000-default.conf. Since you want to point to new ininja.conf its not point.

So how to fix this is use the following commands to stop the service of 000-default.cof and start ininja.conf

sudo a2ensite ininja.conf

sudo a2dissite 000-default.conf

Make sure to restart your apache2

sudo service apache2 restart

Hope this helps.

Channaveer Hakari
  • 2,769
  • 3
  • 34
  • 45