Skip to content

Commit 92a53e3

Browse files
committed
minor #106 some minor tweaks (xabbuh)
This PR was merged into the 2.7 branch. Discussion ---------- some minor tweaks Commits ------- 83cff38 some minor tweaks
2 parents 7e23a59 + 83cff38 commit 92a53e3

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

form/type_guesser.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,6 @@ creating a service and tagging it as ``form.type_guesser``:
213213
->addTag('form.type_guesser')
214214
;
215215
216-
217216
.. sidebar:: Registering a Type Guesser in the Component
218217

219218
If you're using the Form component standalone in your PHP project, use

setup/file_permissions.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ On Linux and macOS systems, if your web server user is different from your
88
command line user, you need to configure permissions properly to avoid issues.
99
There are several ways to achieve that:
1010

11-
1. Use the same user for the CLI and the web server
11+
1. Use the same User for the CLI and the Web Server
1212
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1313

1414
Edit your web server configuration (commonly ``httpd.conf`` or ``apache2.conf``
@@ -22,7 +22,7 @@ update the ``User`` and ``Group`` directives).
2222
unsafe binaries, etc.) as a compromised server would give to the hacker
2323
those privileges.
2424

25-
2. Using ACL on a system that supports ``chmod +a`` (macOS)
25+
2. Using ACL on a System that Supports ``chmod +a`` (macOS)
2626
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2727

2828
On macOS systems, the ``chmod`` command supports the ``+a`` flag to define an
@@ -38,7 +38,7 @@ needed permissions:
3838
$ sudo chmod +a "$HTTPDUSER allow delete,write,append,file_inherit,directory_inherit" app/cache app/logs
3939
$ sudo chmod +a "`whoami` allow delete,write,append,file_inherit,directory_inherit" app/cache app/logs
4040
41-
3. Using ACL on a system that supports ``setfacl`` (Linux/BSD)
41+
3. Using ACL on a System that Supports ``setfacl`` (Linux/BSD)
4242
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4343

4444
Most Linux and BSD distributions don't support ``chmod +a``, but do support
@@ -58,7 +58,7 @@ following script to determine your web server user and grant the needed permissi
5858
setfacl isn't available on NFS mount points. However, storing cache and logs
5959
over NFS is strongly discouraged for performance reasons.
6060

61-
4. Without using ACL
61+
4. Without Using ACL
6262
~~~~~~~~~~~~~~~~~~~~
6363

6464
If none of the previous methods work for you, change the umask so that the
@@ -78,4 +78,4 @@ To achieve this, put the following line at the beginning of the ``app/console``,
7878
Changing the umask is not thread-safe, so the ACL methods are recommended
7979
when they are available.
8080

81-
.. _`enable ACL support`: https://help.ubuntu.com/community/FilePermissionsACLs
81+
.. _`enable ACL support`: https://help.ubuntu.com/community/FilePermissionsACLs

0 commit comments

Comments
 (0)