Younesi
3/6/2019 - 7:47 AM

Nginx config for Laravel

Minimal Nginx Config for Laravel

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

	root /var/www/html/core_cloud/public;

	# Add index.php to the list if you are using PHP
	index index.php index.html index.htm index.nginx-debian.html;

	server_name core_cloud.local;

	location / {
		# First attempt to serve request as file, then
		# as directory, then fall back to displaying a 404.
		try_files $uri $uri/ /index.php?$query_string;
	}

	# pass PHP scripts to FastCGI server
	#
	location ~ \.php$ {
       		#try_files $uri /index.php =404;
		include snippets/fastcgi-php.conf;
	#
	#	# With php-fpm (or other unix sockets):
	#	fastcgi_pass unix:/var/run/php/php7.1-fpm.sock;
	#	# With php-cgi (or other tcp sockets):
		fastcgi_pass 127.0.0.1:9002;
	}

}