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; - } - -} -