Preguntas etiquetadas con deny

42
Cómo restringir el acceso al directorio y subdirecciones

Necesito restringir el acceso a cualquier archivo o subdirectorio en el directorio "testdir". Mi conf: ... location ~* ^.+\.(jpg|txt)$ { root /var/www/site; } location /testdir { deny all; return 404; } ... En mi configuración no tengo restricciones en / testdir / jpg_or_txt-files. ¿Cómo...