You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lychee/docker/apache-config.conf

26 lines
795 B

# This is the apache config as it will appear for the deployed container. Bear in mind that this
# does not overwrite anything on the host that the container is deployed to so everything is "safe"
#
# This will need to match up with how files are added to the container from the Dockerfile
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/lychee
<Directory /var/www/lychee/>
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
allow from all
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>