mirror of
https://github.com/moudsen/mailGraph
synced 2025-05-09 21:14:27 +02:00
19 lines
394 B
Plaintext
19 lines
394 B
Plaintext
ServerName mailgraph.mydomain.com
|
|
|
|
<VirtualHost *:80>
|
|
ServerAdmin me@mydomain.com
|
|
|
|
DocumentRoot /var/www/site/public
|
|
|
|
<Directory /var/www/site/public>
|
|
Options Indexes FollowSymLinks MultiViews
|
|
AllowOverride All
|
|
Order deny,allow
|
|
Allow from all
|
|
</Directory>
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
|
|
</VirtualHost>
|