Filesystem Permissions
BookStack requires the ability to write and read files for various uses such as writing logs, handling file uploads and running application code. Ideally, files permissions should be limited to just what’s required to reduce the chance of potential vulnerability exploit.
By default, BookStack requires the following permissions:
- Read access to the BookStack install folder and everything within.
- Write permission to the following folders, relative to the BookStack installation directory, and everything within:
storage/
bootstrap/cache
public/uploads
Note: This access is likely controlled by the user/group of the PHP and/or web-server processes.
Additionally, you may want to ensure read access the .env
file is limited as much as possible, to just PHP/web-server process and any trusted users that may need to update it, since this file can often contain credentials and keys.
Example Permissions Approach
This section provides an approach for setting permissions for your BookStack instance, which allows updating by the login user while providing the web-server with the required permissions.
The below makes the following assumptions, you will need to change these parts of the commands to make it work for you:
- Your normal login user (That you may run updates with) is called
barry
. - Your BookStack install folder is located at
/var/www/bookstack
. - Your web-server/php user is called
www-data
(Default on Ubuntu systems).
Lines starting with #
are comments.
|
|
SELinux
SELinux, commonly found on RHEL-based systems, can be a factor for filesystem access in some cases. You can often check if SELinux is blocking file access by watching the relevant log while reproducing an action in BookStack which causes an error to occur, via something like the following (Ctrl+C to stop watching):
|
|
Alternatively you could temporarily disable SELinux to check if any issues are resolved with SELinux inactive. If SELinux appears to be the problem, you may additionally need to add a type label to your install files. The below commands show an example of applying SElinux labels on a BookStack installation.
The below makes the following assumptions, you will need to change these parts of the commands to make it work for you:
- Your BookStack install folder is located at
/var/www/bookstack
. - Your web-server uses the
httpd_sys_content_t
for readonly files andhttpd_sys_rw_content_t
for read-write files.
Lines starting with #
are comments.
|
|