Nginx reverse proxy send and receives requests from client to a defined port, that usually is a process that responds to requests the thing is if for one of requests the process crashes the whole parallel threads also crash, I know it should be avoided and by using services it can run after the crash, but can nginx utilizes multiple separate parallel processes? it also has a drawback of loosing statics but in my case it is not important.
location / {
proxy_pass http://127.0.0.1:8000;