diff --git a/conf/nginx.conf b/conf/nginx.conf index 85c32c3..23632f2 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -12,14 +12,14 @@ location __PATH__/ { rewrite ^ https://$server_name$request_uri? permanent; } - index index.php; + index index.html yellow.php; try_files $uri $uri/ index.php; location ~ [^/]\.php(/|$) { fastcgi_split_path_info ^(.+?\.php)(/.*)$; fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock; - fastcgi_index index.php; + fastcgi_index yellow.php; include fastcgi_params; fastcgi_param REMOTE_USER $remote_user; fastcgi_param PATH_INFO $fastcgi_path_info;