17 lines
440 B
ApacheConf
17 lines
440 B
ApacheConf
<VirtualHost *:80>
|
|
DocumentRoot /var/www/html/mkach
|
|
ServerName localhost
|
|
AddDefaultCharset UTF-8
|
|
|
|
<Directory /var/www/html/mkach>
|
|
AllowOverride All
|
|
Require all granted
|
|
</Directory>
|
|
|
|
<Directory /var/www/html/mkach/uploads>
|
|
Require all granted
|
|
</Directory>
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/mkach_error.log
|
|
CustomLog ${APACHE_LOG_DIR}/mkach_access.log combined
|
|
</VirtualHost> |