Reputation: 4512
I have started working in laravel and using lampp. I have watched many tutorials that use a vhost to make user-friendly url. I want to do it on Ubuntu 16.04.
Following tutorial is not working for me:
https://ourcodeworld.com/articles/read/302/how-to-setup-a-virtual-host-locally-with-xampp-in-ubuntu
<VirtualHost *:80>
DocumentRoot "/opt/lampp/htdocs/basicwebsite/public"
ServerName mywebsite.dev
</VirtualHost>
Upvotes: 3
Views: 11880
Reputation: 557
Setup a virtual host for a Laravel project
$sudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/myVhost
$sudo nano /etc/apache2/sites-available/myVhost.conf
assuming that the Laravel project is in /var/www/html/
ServerAdmin webmaster@localhost
serverName www.myAwesomeLink.com
DocumentRoot /var/www/html/laravel-app/public
<Directory /var/www/html/laravel-app>
AllowOverride All
</Directory>
so now the file will look something like this:
save and close.
$sudo nano /etc/hosts
add this line:
127.0.0.1 www.myAwesomeLink.com
save and close.
$sudo a2enmod rewrite
$sudo a2ensite myVhost.conf
$sudo service apache2 restart
open the project folder
php artisan serve
this will serve on port 8000 by default
you can also specify the port
php artisan serve --port=4200
or any other specified port.
Upvotes: 13
Reputation: 35
1.Create new file under this path /etc/apache2/sites-available/myweb.conf
2.Copy the following to the file
# Indexes + Directory Root.
DirectoryIndex index.php
DocumentRoot /var/www/html/mywebsite/public
ServerName dev.mywebsite.test
<Directory "/var/www/html/mywebsite/public">
Options All
AllowOverride All
Allow from all
</Directory>
3.Run "sudo a2ensite myweb.conf"
4.Add this line "Listen 80" to file "/etc/apache2/ports.conf"
5.Restart apache server
Upvotes: 0
Reputation: 1045
Its not working because the browsers have updated their security terms and policies including SSL certificates over .dev
domains. just change your extension from .dev
to something else like .localhost
or .test
.
<VirtualHost *:80>
DocumentRoot "/opt/lampp/htdocs/basicwebsite/public"
ServerName dev.mywebsite.test
</VirtualHost>
Also change the extension in /etc/hosts
from .dev
to .test
.
127.0.0.1 dev.mywebsite.test
Also keep in mind to restart the service to load the new added virtual host i.e: restart the Apache server
Hope it helps.
Upvotes: 2
Reputation: 1359
I think you also need to add a host in /etc/hosts
. Open the hosts file and add this line:
127.0.0.1 mywebsite.dev
You will need to restart server after this.
Upvotes: 0