docker-bookstack/bookstack.conf
solidnerd 6763e153a4 feat: run container as none root
BREAKING CHANGE:
This will drop all root privileges inside the container. Probably Migrations are required see `docs/migrate.md`

Closes #170

Signed-off-by: solidnerd <niclas@mietz.io>
2020-04-10 17:23:18 +02:00

23 lines
1 KiB
Text

<VirtualHost *:8080>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
ServerName bookstack
DocumentRoot /var/www/bookstack/public
<Directory "/var/www/bookstack/">
Options FollowSymLinks MultiViews
AllowOverride All
Require all granted
</Directory>
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
LogLevel info
</VirtualHost>