From a969e78ee5c13f8a3ee5d698a200a70e0c1353fe Mon Sep 17 00:00:00 2001 From: yesterday679 Date: Tue, 3 Apr 2018 19:09:37 +0800 Subject: [PATCH] update README --- nginx/config/lumen.conf | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 nginx/config/lumen.conf diff --git a/nginx/config/lumen.conf b/nginx/config/lumen.conf deleted file mode 100644 index 804086b..0000000 --- a/nginx/config/lumen.conf +++ /dev/null @@ -1,23 +0,0 @@ -server { - listen 80; - server_name lumen; - - root /var/www/html/lumen/public; - index index.php; - - location / { - try_files $uri $uri/ /index.php$is_args$args; - } - - location ~ \.php(.*)$ { - fastcgi_pass php-upstream; - fastcgi_index index.php; - fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; - fastcgi_param PATH_INFO $fastcgi_path_info; - fastcgi_split_path_info ^((?U).+\.php)(/?.+)$; - proxy_read_timeout 600; - include fastcgi_params; - } - -} -