Browse Source

Merge pull request #2449 from nginx-proxy/fix-fastcgi

fix: include a complete fastcgi_params config
Nicolas Duchon 1 year ago
parent
commit
57501eb13f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      nginx.tmpl

+ 1 - 1
nginx.tmpl

@@ -265,7 +265,7 @@
         uwsgi_pass {{ trim $proto }}://{{ trim $upstream }};
         {{- else if eq $proto "fastcgi" }}
         root {{ trim .VhostRoot }};
-        include fastcgi_params;
+        include fastcgi.conf;
         fastcgi_pass {{ trim $upstream }};
             {{- if ne $keepalive "disabled" }}
         fastcgi_keep_conn on;