Laravel How to Configure Domains for in Apache/Nginx

Apache For Apache, file name may be in sites-enabled folder, for example /etc/apache2/sites-enabled/000-default.conf or, for MAMP, it would be /Applications/MAMP/conf/apache/extra/httpd-vhosts.conf where you need this: <VirtualHost *:80> ServerAdmin povilas@laraveldaily.com DocumentRoot "/Applications/MAMP/htdocs/project1/public" ServerName project1.test </VirtualHost> See that /public part at…