Answers for "nginx not found"

PHP
0

php nginx file not found

location ~ .php$ {
            root           html;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            include        fastcgi_params;
}
Posted by: Guest on August-21-2021
0

how to avoid nginx not found 404 error ubuntu react app

location / {
            root /var/www/myapp/build;
            index index.html;
            try_files $uri /index.html$is_args$args =404;
    }
Posted by: Guest on June-29-2021

Browse Popular Code Answers by Language