LINUX.ORG.RU

История изменений

Исправление Darth_Revan, (текущая версия) :

Починил оформление:

server {
	listen 80;

	root /home/www/EXAMPLE.ru/www;
	index index.php index.html index.htm;
	server_name 45.90.32.79 EXAMPLE.ru http://www.EXAMPLE.ru xn----etbpedkmhk.xn--p1ai http://www.xn----etbpedkmhk.xn--p1ai;
	client_max_body_size 5m;

	if ($host = 'http://www.EXAMPLE.ru') {
		rewrite ^/(.*)$ http://EXAMPLE.ru/$1 permanent;
	}

	rewrite ^/(.*)/$ /$1 permanent;
	charset utf-8;

	location = /robots.txt {
		root /home/www/EXAMPLE.ru/www/media/;
	}

	location / {
		try_files $uri $uri/ index.php last;

		if (!-e $request_filename) {
			rewrite ^(.*?)$ /index.php?rt=$1 last;
			break;
		}
	}

	location ~ \.php$ {
		try_files $fastcgi_script_name =404;
		fastcgi_pass unix:/run/php/php7.2-fpm.sock;
		fastcgi_index /index.php;
		fastcgi_param SCRIPT_FILENAME /home/www/EXAMPLE.ru/www$fastcgi_script_name;
		#fastcgi_param PHP_VALUE " # post_max_size=5M # upload_max_filesize=5M # ";
		include /etc/nginx/fastcgi_params;
	}

	location ~* ^.+.(jpg|ttf|woff|jpeg|gif|png|ico|json|css|pdf|ppt|txt|bmp|rtf|js)$ {
		expires 7d; # директива кэширования
	}

	location ~ /\. {
		deny all;
	}
}

Исходная версия Darth_Revan, :

Починил оформление:

server {
	listen 80;

	root /home/www/EXAMPLE.ru/www;
	index index.php index.html index.htm;
	server_name 45.90.32.79 EXAMPLE.ru http://www.EXAMPLE.ru xn----etbpedkmhk.xn--p1ai http://www.xn----etbpedkmhk.xn--p1ai;
	client_max_body_size 5m;

	if ($host = 'http://www.EXAMPLE.ru') {
		rewrite ^/(.*)$ http://EXAMPLE.ru/$1 permanent;
	}

	rewrite ^/(.*)/$ /$1 permanent;
	charset utf-8;

	location = /robots.txt {
		root /home/www/EXAMPLE.ru/www/media/;
	}

	location / {
		try_files $uri $uri/ index.php last;

		if (!-e $request_filename) {
			rewrite ^(.*?)$ /index.php?rt=$1 last;
			break;
		}
	}

	location ~ \.php$ {
		try_files $fastcgi_script_name =404;
		fastcgi_pass unix:/run/php/php7.2-fpm.sock;
		fastcgi_index /index.php;
		fastcgi_param SCRIPT_FILENAME /home/www/EXAMPLE.ru/www$fastcgi_script_name;
		#fastcgi_param PHP_VALUE " # post_max_size=5M # upload_max_filesize=5M # ";
		include /etc/nginx/fastcgi_params;
	}

	location ~* ^.+.(jpg|ttf|woff|jpeg|gif|png|ico|json|css|pdf|ppt|txt|bmp|rtf|js)$ {
		expires 7d;
		# директива кэширования
	}

	location ~ /\. {
		deny all;
	}
}