From a0b8214f55dff0f783cadf4d7ea9ef49c2b95fb4 Mon Sep 17 00:00:00 2001 From: Daniel Ferradal Date: Mon, 26 Jun 2017 19:03:38 +0000 Subject: [PATCH] Added Spanish translation for manual/mod/mod_allowhandlers.xml.es git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1799971 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_allowhandlers.html.es | 110 ++++++++++++++++++++++ docs/manual/mod/mod_allowhandlers.xml.es | 73 ++++++++++++++ 2 files changed, 183 insertions(+) create mode 100644 docs/manual/mod/mod_allowhandlers.html.es create mode 100644 docs/manual/mod/mod_allowhandlers.xml.es diff --git a/docs/manual/mod/mod_allowhandlers.html.es b/docs/manual/mod/mod_allowhandlers.html.es new file mode 100644 index 0000000000..a2314a0e4d --- /dev/null +++ b/docs/manual/mod/mod_allowhandlers.html.es @@ -0,0 +1,110 @@ + + + + + +mod_allowhandlers - Servidor HTTP Apache Versión 2.5 + + + + + + + + +
<-
+
+Apache > Servidor HTTP > Documentación > Versión 2.5 > Módulos
+
+

Módulo Apache mod_allowhandlers

+
+

Idiomas disponibles:  en  | + es 

+
+ + + +
Descripción:Restringir fácilmente qué handlers HTTP pueden ser usados en el servidor
Estado:Experimental
Identificador de Módulos:allowhandlers_module
Fichero de Código Fuente:mod_allowhandlers.c
+

Resumen de contenidos

+ +

Éste módulo hace que sea fácil restringir qué handlers podrían usarse para una petición. Una posible configuración sería:

+ +
<Location "/">
+  AllowHandlers not server-info server-status balancer-manager ldap-status
+</Location>
+ + +

También registra un handler llamado forbidden que sencillamente devuelve 403 FORBIDDEN al cliente. Esto se puede usar con directivas como +AddHandler.

+ +
+

Directivas

+ +

Bugfix checklist

Consulte también

+
+ +
top
+

AllowHandlers Directiva

+ + + + + + + +
Descripción:Restringe acceso a los handlers listados
Sintaxis:AllowHandlers [not] none|handler-name +[none|handler-name]...
Valor por defecto:AllowHandlers all
Contexto:directory
Estado:Experimental
Módulo:mod_allowhandlers
+ +

Los nombres de handler son sensibles a mayúsculas. El nombre especial +none puede usarse para hacer coincidir mayúsculas donde no se ha configurado ningún handler. El valor especial all puede usarse para permitir todos los handlers otra vez en una sección de configuración posterior, incluso si algunas cabeceras fueron denegadas previamente en el orden de fusión de la configuración:

+ +
<Location "/server-status">
+  AllowHandlers all
+  SetHandler server-status
+</Location>
+ + + +
+
+
+

Idiomas disponibles:  en  | + es 

+
top

Comentarios

Notice:
This is not a Q&A section. Comments placed here should be pointed towards suggestions on improving the documentation or server, and may be removed again by our moderators if they are either implemented or considered invalid/off-topic. Questions on how to manage the Apache HTTP Server should be directed at either our IRC channel, #httpd, on Freenode, or sent to our mailing lists.
+
+ \ No newline at end of file diff --git a/docs/manual/mod/mod_allowhandlers.xml.es b/docs/manual/mod/mod_allowhandlers.xml.es new file mode 100644 index 0000000000..adcd705365 --- /dev/null +++ b/docs/manual/mod/mod_allowhandlers.xml.es @@ -0,0 +1,73 @@ + + + + + + + + + +mod_allowhandlers +Restringir fácilmente qué handlers HTTP pueden ser usados en el servidor +Experimental +mod_allowhandlers.c +allowhandlers_module + + + +

Éste módulo hace que sea fácil restringir qué handlers podrían usarse para una petición. Una posible configuración sería:

+ + +<Location "/"> + AllowHandlers not server-info server-status balancer-manager ldap-status +</Location> + + +

También registra un handler llamado forbidden que sencillamente devuelve 403 FORBIDDEN al cliente. Esto se puede usar con directivas como +AddHandler.

+ +
+ +SetHandler +AddHandler + + +AllowHandlers +Restringe acceso a los handlers listados +AllowHandlers [not] none|handler-name +[none|handler-name]... +AllowHandlers all +directory +Experimental + + + +

Los nombres de handler son sensibles a mayúsculas. El nombre especial +none puede usarse para hacer coincidir mayúsculas donde no se ha configurado ningún handler. El valor especial all puede usarse para permitir todos los handlers otra vez en una sección de configuración posterior, incluso si algunas cabeceras fueron denegadas previamente en el orden de fusión de la configuración:

+ + +<Location "/server-status"> + AllowHandlers all + SetHandler server-status +</Location> + + +
+
+ +
-- 2.40.0