9951 explained code solutions for 126 technologies


php-laravelHow can I configure Nginx to work with Laravel on a PHP server?


You can configure Nginx to work with Laravel on a PHP server by following the steps below:

  1. Install Nginx and PHP-FPM:
sudo apt-get install nginx php-fpm
  1. Create a new Nginx configuration file in the /etc/nginx/sites-available directory. This file should contain the following:
server {
    listen 80;
    server_name example.com;
    root /var/www/example.com/public;

    index index.html index.htm index.php;

    charset utf-8;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    location = /favicon.ico { access_log off; log_not_found off; }
    location = /robots.txt  { access_log off; log_not_found off; }

    access_log off;
    error_log  /var/log/nginx/example.com-error.log error;

    sendfile off;

    client_max_body_size 100m;

    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/run/php/php7.2-fpm.sock;
        fastcgi_index index.php;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_intercept_errors off;
        fastcgi_buffer_size 16k;
        fastcgi_buffers 4 16k;
    }

    location ~ /\.ht {
        deny all;
    }
}
  1. Enable the new configuration file by creating a symbolic link from the /etc/nginx/sites-enabled directory to the configuration file in the /etc/nginx/sites-available directory.
sudo ln -s /etc/nginx/sites-available/example.com /etc/nginx/sites-enabled/example.com
  1. Test the configuration file for syntax errors.
sudo nginx -t
  1. Restart Nginx to apply the changes.
sudo service nginx restart
  1. Install the Laravel framework and configure the web server.

  2. Test your Laravel application by navigating to the URL in your web browser.

For more information, please refer to the following links:

Edit this code on GitHub