<div dir="auto"><div dir="auto">Another thing to try would be to enable debug to your output log.<div dir="auto"><br></div><div dir="auto">Add this line to the top of your nginx.conf file and restart NGINX:</div><div dir="auto"><br></div><div dir="auto"><pre style="font-size:15px;margin-top:0px;margin-bottom:0px;color:rgb(32,34,33);border:0px;outline:0px;vertical-align:baseline;max-width:100%;background:rgb(247,247,247);line-height:1.4;padding:8px;border-radius:4px"><code style="font-family:courier;font-size:14px;color:inherit;border:0px;margin:0px;outline:0px;padding:1px 0px;vertical-align:baseline;line-height:24px;letter-spacing:0px;background:0px 0px;border-radius:4px">error_log  /var/log/nginx/error.log debug;</code></pre></div></div><div dir="auto"><br></div>This assumes you have built NGINX with the configure option of --with-debug<div dir="auto"><br></div><div dir="auto">Here's the URL to the NGINX docs for convenience:</div><div dir="auto"><br></div><div dir="auto"><a href="https://docs.nginx.com/nginx/admin-guide/monitoring/debugging/">https://docs.nginx.com/nginx/admin-guide/monitoring/debugging/</a></div><div dir="auto"><div dir="auto"><br></div><div dir="auto"><br><div class="gmail_quote" dir="auto"><div dir="ltr" class="gmail_attr">On Thu, Mar 30, 2023, 7:16 AM Rick Gutierrez <<a href="mailto:xserverlinux@gmail.com" rel="noreferrer noreferrer" target="_blank">xserverlinux@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi list, I have a situation that I want to share, we develop a small<br>
application in php that has friendly urls, it has a section in English<br>
and the other in Spanish, but when we put it in the backend server the<br>
project does not load correctly.<br>
<br>
I want to share a bit about the design of our infrastructure:<br>
<br>
users =========> Proxy reverse ===========backend server<br>
<br>
I've tried different configurations on the backend server and the<br>
reverse proxy, but still can't get it to load.<br>
<br>
For example, in the backend I put this type of application to load:<br>
<br>
location /<br>
<br>
    {<br>
<br>
      try_files $uri $uri/ /index.php?$args;<br>
#      try_files $uri /index.php;<br>
      root /var/tmp/sites/<a href="http://site.com/htdocs" rel="noreferrer noreferrer noreferrer noreferrer" target="_blank">site.com/htdocs</a>;<br>
       index index.php index.html index.htm;<br>
<br>
    }<br>
<br>
<br>
<br>
proxy reverse :<br>
<br>
location / {<br>
<br>
<br>
        proxy_http_version 1.1;<br>
        proxy_set_header Connection "";<br>
        proxy_set_header Host $host;<br>
<br>
proxy_set_header X-Real-IP  $remote_addr;<br>
<br>
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;<br>
<br>
  proxy_connect_timeout 900s;<br>
<br>
        proxy_send_timeout 900s;<br>
<br>
        proxy_read_timeout 900s;<br>
<br>
proxy_buffer_size 64k;<br>
<br>
proxy_buffers 16 32k;<br>
<br>
proxy_busy_buffers_size 64k;<br>
<br>
proxy_redirect off;<br>
<br>
proxy_request_buffering off;<br>
<br>
proxy_buffering off;<br>
<br>
        proxy_pass <a href="http://backend2" rel="noreferrer noreferrer noreferrer noreferrer" target="_blank">http://backend2</a>;<br>
<br>
<br>
    }<br>
<br>
I don't see any errors in the log,<br>
<br>
any advice?<br>
<br>
-- <br>
rickygm<br>
<br>
<a href="http://gnuforever.homelinux.com" rel="noreferrer noreferrer noreferrer noreferrer" target="_blank">http://gnuforever.homelinux.com</a><br>
_______________________________________________<br>
nginx mailing list<br>
<a href="mailto:nginx@nginx.org" rel="noreferrer noreferrer noreferrer" target="_blank">nginx@nginx.org</a><br>
<a href="https://mailman.nginx.org/mailman/listinfo/nginx" rel="noreferrer noreferrer noreferrer noreferrer" target="_blank">https://mailman.nginx.org/mailman/listinfo/nginx</a><br>
</blockquote></div></div></div></div>