mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-25 19:01:28 +01:00
31 lines
668 B
Plaintext
31 lines
668 B
Plaintext
#
|
|
#
|
|
# Sample httpd.public.conf for dolibarr
|
|
#
|
|
# $Id$
|
|
# $Source$
|
|
#
|
|
<VirtualHost public-doli.lafrere.lan>
|
|
ServerAdmin webmaster.fr@lolix.org
|
|
DocumentRoot /spare/home/www/dolibarr/dolibarr/htdocs
|
|
ServerName public-doli.lafrere.lan
|
|
ErrorLog /spare/home/www/dolibarr/logs/error.log
|
|
CustomLog /spare/home/www/dolibarr/logs/access.log combined
|
|
|
|
ErrorDocument 401 /public/error-401.html
|
|
|
|
<Location />
|
|
Options Indexes FollowSymLinks
|
|
AllowOverride All
|
|
Order deny,allow
|
|
Allow from all
|
|
</Location>
|
|
|
|
<Location /public/>
|
|
Options Indexes FollowSymLinks
|
|
AllowOverride All
|
|
Order deny,allow
|
|
Allow from all
|
|
</Location>
|
|
|
|
</VirtualHost> |