Archive for the ‘apache’ Category:

Allow from IP without passwd in htaccess

{ Posted on Jun 15 2011 by lucas }
If you want to protect a website from all ips with user/passwd except from one ip, this solves your problem: Order deny,allow Deny from all AuthName "Restricted area" AuthUserFile /home/website/path/.htpasswd AuthType Basic Require valid-user Allow from 172.17.10.1 Satisfy Any Apache power! Read More »

proxy inverso y cómo pasar la ip real al servidor del backend

{ Posted on Aug 03 2008 by lucas }
Comments Off
Tags : , , ,
Categories : apache, nginx
Cuando se monta una infraestructura algo más compleja que las normales, se suele utilizar un frontend web para servir contenido estático y el resto pasarlo al backend para que sea interpretado por un servidor de aplicaciones (java, php, ...). Esto ...Read More »