Skip to content

Commit

Permalink
[#4295] Tweaking notes language
Browse files Browse the repository at this point in the history
  • Loading branch information
weaverryan committed Nov 4, 2014
1 parent 5165419 commit 9f6f05c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cookbook/configuration/web_server_configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,8 @@ are:
try_files $uri /app.php$is_args$args;
}
# DEV
# Be sure to remove app_dev.php and config.php scripts when app is
# deployed to PROD environment, this rule only must be placed on DEV
# This rule should only be placed on your development environment
# In production, don't include this and don't deploy app_dev.php or config.php
location ~ ^/(app_dev|config)\.php(/|$) {
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
Expand All @@ -223,9 +223,9 @@ are:
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param HTTPS off;
# prevent explicit access and hide front controller
# remove "internal" directive if you want to allow uri's like
# Prevents URI's that include the front controller. This will 404:
# http://domain.tld/app.php/some-path
# Remove the internal directive to allow URI's like this

This comment has been minimized.

Copy link
@xabbuh

xabbuh Nov 4, 2014

Member

@weaverryan Shouldn't this be "URIs"? ;)

This comment has been minimized.

Copy link
@weaverryan

weaverryan Nov 4, 2014

Author Member

Looks like you're right! Fixed!

internal;
}
Expand Down

0 comments on commit 9f6f05c

Please sign in to comment.