2025-01-23 17:52:59 +07:00
|
|
|
ServerName localhost
|
|
|
|
|
|
|
|
|
|
<VirtualHost *:80>
|
|
|
|
|
DocumentRoot "/var/www/html"
|
|
|
|
|
|
|
|
|
|
<Directory "/var/www/html">
|
|
|
|
|
Options Indexes FollowSymLinks
|
|
|
|
|
AllowOverride All
|
|
|
|
|
Require all granted
|
|
|
|
|
</Directory>
|
|
|
|
|
|
2025-01-23 18:38:32 +07:00
|
|
|
<Location /server-status>
|
|
|
|
|
SetHandler server-status
|
|
|
|
|
Require ip 10.10.1.0/24
|
|
|
|
|
</Location>
|
|
|
|
|
|
2025-01-23 17:52:59 +07:00
|
|
|
ErrorLog /proc/self/fd/2
|
|
|
|
|
CustomLog /proc/self/fd/1 common
|
|
|
|
|
</VirtualHost>
|