19 lines
No EOL
410 B
ApacheConf
19 lines
No EOL
410 B
ApacheConf
ServerName localhost
|
|
|
|
<VirtualHost *:80>
|
|
DocumentRoot "/var/www/html"
|
|
|
|
<Directory "/var/www/html">
|
|
Options Indexes FollowSymLinks
|
|
AllowOverride All
|
|
Require all granted
|
|
</Directory>
|
|
|
|
<Location /server-status>
|
|
SetHandler server-status
|
|
Require ip 10.10.1.0/24
|
|
</Location>
|
|
|
|
ErrorLog /proc/self/fd/2
|
|
CustomLog /proc/self/fd/1 common
|
|
</VirtualHost> |