You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
545 B
24 lines
545 B
<VirtualHost *:80> |
|
ServerName sqlservercheck |
|
DocumentRoot /var/www/html |
|
|
|
<Directory /var/www/html> |
|
Options -Indexes |
|
AllowOverride None |
|
Require all denied |
|
</Directory> |
|
|
|
Alias /ts /var/www/html/ts.php |
|
Alias /nts /var/www/html/nts.php |
|
|
|
<Location /ts> |
|
Require ip 127.0.0.1 172.16.0.0/12 10.0.0.0/8 |
|
</Location> |
|
|
|
<Location /nts> |
|
Require ip 127.0.0.1 172.16.0.0/12 10.0.0.0/8 |
|
</Location> |
|
|
|
ErrorLog /proc/self/fd/2 |
|
CustomLog /proc/self/fd/1 combined |
|
</VirtualHost>
|
|
|