mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
ef8e20f66b
* docker-alpine: Alpine linux container + apache 2.4 support * docker-alpine: Force passport migrations (production mode Exception) * docker-alpine: Copy default env in Dockerfile
20 lines
474 B
ApacheConf
20 lines
474 B
ApacheConf
<VirtualHost *:80>
|
|
ServerAdmin webmaster@localhost
|
|
|
|
DocumentRoot "/var/www/html/public"
|
|
DirectoryIndex index.php index.html
|
|
<Directory "/var/www/html/public">
|
|
Options All +MultiViews -ExecCGI -Indexes
|
|
<IfModule mod_dav.c>
|
|
DAV Off
|
|
</IfModule>
|
|
AllowOverride All
|
|
Require all granted
|
|
</Directory>
|
|
LogLevel warn
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
</VirtualHost>
|
|
|
|
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
|