Carlos_Cunha
(usa Linux Mint)
Enviado em 16/01/2018 - 21:40h
Usei para Ubuntu
apt-get install apache2
apt-get install php5
# Comando htaccess
apt-get install apache2-utils
# habilitar modulo rewrite
a2enmod rewrite
# vim /etc/apache2/apache2.conf
# Desccomentar caso não esteja
AccessFileName .htaccess
# No arquivo apache.conf alterar a linha AllowOverride para
# Sem isso htacces não funciona
AllowOverride All
Assim:
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
------------------
Arquivos Por usuarios
.htaccess
AuthType Basic
AuthName "Restricted Files"
AuthUserFile /var/www/html/www/htpasswd
Require valid-user
1° Vez(para criar arquivo)
htpasswd -c /PATH/htpasswd user1
Depois para adicionar
htpasswd /PATH/htpasswd user2
Arquivo por Ip/Rede
.htaccess
# ALLOW USER BY IP
<Limit GET POST>
order deny,allow
deny from all
Allow from 192.168.101.0/24
</Limit>
#-------------------------------------------------------------------------------------#
Administrador de Redes Mistas Linux/Windows
LPI 101-102
LPI 201
Para consultas particulares acesse:
www.cunhatec.com.br
"Falar é fácil, me mostre o código." - Linus Torvalds