File tree
Expand file treeCollapse file tree1 file changed
+0
-2
lines changed Expand file treeCollapse file tree1 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:
|
269 | 269 | fastcgi_split_path_info ^(.+\.php)(/.*)$;
|
270 | 270 | include fastcgi_params;
|
271 | 271 | fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
272 |
| -fastcgi_param HTTPS off; |
273 | 272 | }
|
274 | 273 | # PROD
|
275 | 274 | location ~ ^/app\.php(/|$) {
|
276 | 275 | fastcgi_pass unix:/var/run/php5-fpm.sock;
|
277 | 276 | fastcgi_split_path_info ^(.+\.php)(/.*)$;
|
278 | 277 | include fastcgi_params;
|
279 | 278 | fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
280 |
| -fastcgi_param HTTPS off; |
281 | 279 | # Prevents URIs that include the front controller. This will 404:
|
282 | 280 | # http://domain.tld/app.php/some-path
|
283 | 281 | # Remove the internal directive to allow URIs like this
|
|
You can’t perform that action at this time.
0 commit comments