Answers for "nginx for laravel"

PHP
4

laravel deployment

composer install --optimize-autoloader --no-dev
Posted by: Guest on November-24-2020
0

laravel nginx

# If you are using Nginx, the following directive in your site 
# configuration will direct all requests to the index.php 
# front controller:

location / {
    try_files $uri $uri/ /index.php?$query_string;
}
Posted by: Guest on May-04-2020

Browse Popular Code Answers by Language