This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MAIL_DRIVER=mailgun | |
MAIL_HOST=smtp.mailgun.org | |
MAIL_PORT=587 | |
MAIL_ENCRYPTION=tls | |
MAILGUN_DOMAIN= | |
MAILGUN_SECRET= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:80> | |
ServerAdmin [email protected] | |
DocumentRoot "C:\xampp\htdocs\project-folder\public" | |
ServerName local.project-folder.com | |
ServerAlias local.project-folder.com | |
<Directory "C:\xampp\htdocs\project-folder"> | |
Order allow,deny | |
Allow from all | |
</Directory> | |
</VirtualHost> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:80> | |
ServerName laravel-project.dev | |
ServerAlias www.laravel-project.dev | |
DocumentRoot /var/www/laravel-project/public | |
<Directory /var/www/laravel-project/public> | |
Options -Indexes +FollowSymLinks -MultiViews | |
AllowOverride All | |
Require all granted | |
</Directory> | |
ErrorLog ${APACHE_LOG_DIR}/laravel-project-error.log |