mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2026-07-27 19:51:38 +00:00
15 lines
452 B
Text
15 lines
452 B
Text
# Verbatim from https://docs.part-db.de/installation/installation_guide-debian.html
|
|
<VirtualHost *:80>
|
|
ServerName partdb.lan
|
|
ServerAlias www.partdb.lan
|
|
|
|
DocumentRoot /var/www/partdb/public
|
|
<Directory /var/www/partdb/public>
|
|
AllowOverride All
|
|
Order Allow,Deny
|
|
Allow from All
|
|
</Directory>
|
|
|
|
ErrorLog /var/log/apache2/partdb_error.log
|
|
CustomLog /var/log/apache2/partdb_access.log combined
|
|
</VirtualHost>
|