Skip to content

Commit

Permalink
Removed reference to remove HTTPS off from nginx configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
wjzijderveld committed Jul 16, 2015
1 parent 6a34332 commit 3878e14
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions cookbook/configuration/web_server_configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -269,15 +269,13 @@ The **minimum configuration** to get your application running under Nginx is:
fastcgi_split_path_info ^(.+\.php)(/.*)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param HTTPS off;
}
# PROD
location ~ ^/app\.php(/|$) {
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param HTTPS off;
# Prevents URIs that include the front controller. This will 404:
# http://domain.tld/app.php/some-path
# Remove the internal directive to allow URIs like this
Expand Down

0 comments on commit 3878e14

Please sign in to comment.