Laravel Nginx configuration

server {
    listen 80;
    listen [::]:80;

    root /var/www/html/jdk/public;
    index index.php index.html index.htm index.nginx-debian.html;

    server_name example.com www.example.com;

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

     location ~ \.php$ {
            include snippets/fastcgi-php.conf;
            fastcgi_pass unix:/run/php/php7.0-fpm.sock;
     }

     location ~ /\.ht {
            deny all;
     }

     location ~ /.well-known {
            allow all;
     }
}
Facebook Comments

You may also like