4 069
contributi
Riga 130: | Riga 130: | ||
<pre> | <pre> | ||
# nano /etc/apache2/conf.d/mod_status.conf | # nano /etc/apache2/conf.d/mod_status.conf | ||
</pre> | |||
oppure da '''Debian Stretch''': | |||
<pre> | |||
# nano /etc/apache2/mods-available/status.conf | |||
</pre> | </pre> | ||
contenente: | contenente: | ||
Riga 135: | Riga 139: | ||
<Location /server-status> | <Location /server-status> | ||
SetHandler server-status | SetHandler server-status | ||
Order deny,allow | # Fino a Debian Jessie | ||
Deny from all | #Order deny,allow | ||
Allow from 192.168.0.0/24 | #Deny from all | ||
#Allow from 192.168.0.0/24 | |||
# Da Debian Stretch | |||
Require ip 192.168.0.0/24 | |||
</Location> | </Location> | ||
</pre> | </pre> | ||
Riga 145: | Riga 152: | ||
<pre> | <pre> | ||
# nano /etc/apache2/conf.d/mod_info.conf | # nano /etc/apache2/conf.d/mod_info.conf | ||
</pre> | |||
oppure da '''Debian Stretch''': | |||
<pre> | |||
# nano /etc/apache2/mods-available/info.conf | |||
</pre> | </pre> | ||
contenente: | contenente: | ||
Riga 150: | Riga 161: | ||
<Location /server-info> | <Location /server-info> | ||
SetHandler server-info | SetHandler server-info | ||
Order deny,allow | # Fino a Debian Jessie | ||
Deny from all | #Order deny,allow | ||
Allow from 192.168.0.0/24 | #Deny from all | ||
</Location> | #Allow from 192.168.0.0/24 | ||
# Da Debian Stretch | |||
Require ip 192.168.0.0/24</Location> | |||
</pre> | </pre> | ||
Dove ovviamente al posto della classe 192.168.0.0/24 dovremo indicare la classe di indirizzi della nostra LAN. | Dove ovviamente al posto della classe 192.168.0.0/24 dovremo indicare la classe di indirizzi della nostra LAN. |