File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -269,15 +269,13 @@ The **minimum configuration** to get your application running under Nginx is:
269269 fastcgi_split_path_info ^(.+\.php)(/.*)$;
270270 include fastcgi_params;
271271 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
272- fastcgi_param HTTPS off;
273272 }
274273 # PROD
275274 location ~ ^/app\.php(/|$) {
276275 fastcgi_pass unix:/var/run/php5-fpm.sock;
277276 fastcgi_split_path_info ^(.+\.php)(/.*)$;
278277 include fastcgi_params;
279278 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
280- fastcgi_param HTTPS off;
281279 # Prevents URIs that include the front controller. This will 404:
282280 # http://domain.tld/app.php/some-path
283281 # Remove the internal directive to allow URIs like this
You can’t perform that action at this time.
0 commit comments