fbpx

NGINX

Laravel NGINX configuration

by ,


We have by far the largest RPM repository with NGINX module packages and VMODs for Varnish. If you want to install NGINX, Varnish, and lots of useful performance/security software with smooth yum upgrades for production use, this is the repository for you.
Active subscription is required.

Laravel is a modern PHP framework that runs great together with NGINX.
However, you have to know the right approach to configuring NGINX for the most performance and security.

Let’s review this NGINX configuration of Laravel that will empower Laravel with both performance and security.

Pre-requisities

server {
    listen 80;
    server_name example.com;
    root /srv/example.com/public;

    security_headers on;

    index index.php;

    charset utf-8;

    location / {
        dynamic_etag on;
        length_hiding on;

        fastcgi_param SCRIPT_FILENAME $document_root/index.php;
        include fastcgi_params;
        # override SCRIPT_NAME which was set in fastcgi_params
        fastcgi_param SCRIPT_NAME /index.php;
        fastcgi_pass unix:/var/run/php-fpm/example.com.sock;
    }

    location ~ \.(jpg|jpeg|gif|css|png|js|ico|html)$ {
        immutable on;
    }

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

    location ~ \.php$ {
        return 404;
    }

    location ~ /\.(?!well-known).* {
        deny all;
    }
}

Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes:

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

This site uses Akismet to reduce spam. Learn how your comment data is processed.