Apache:Virtual Host Sederhana: Difference between revisions
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
<syntaxhighlight lang="apache" line="1"> | |||
<VirtualHost *:80> | |||
ServerName example.com | |||
ServerAlias www.example.com | |||
ServerAdmin webmaster@example.com | |||
DocumentRoot /var/www/example.com/public_html | |||
<Directory /var/www/example.com/public_html> | |||
Options -Indexes +FollowSymLinks | |||
AllowOverride All | |||
</Directory> | |||
ErrorLog ${APACHE_LOG_DIR}/example.com-error.log | |||
CustomLog ${APACHE_LOG_DIR}/example.com-access.log combined | |||
</VirtualHost> | |||
</syntaxhighlight> | |||
==Source== | ==Source== | ||