From 9f4e882133fa6f71731989a5aedf6fb288a601f0 Mon Sep 17 00:00:00 2001 From: Daniel Ferradal Date: Wed, 28 Jun 2017 16:06:50 +0000 Subject: [PATCH] Added Spanish translation for manual/mod/mod_allowmethods.xml.es git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1800183 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_allowmethods.html.es | 115 +++++++++++++++++++++++ docs/manual/mod/mod_allowmethods.xml.es | 85 +++++++++++++++++ 2 files changed, 200 insertions(+) create mode 100644 docs/manual/mod/mod_allowmethods.html.es create mode 100644 docs/manual/mod/mod_allowmethods.xml.es diff --git a/docs/manual/mod/mod_allowmethods.html.es b/docs/manual/mod/mod_allowmethods.html.es new file mode 100644 index 0000000000..ca8678c528 --- /dev/null +++ b/docs/manual/mod/mod_allowmethods.html.es @@ -0,0 +1,115 @@ + + + + + +mod_allowmethods - Servidor HTTP Apache Versión 2.5 + + + + + + + + +
<-
+
+Apache > Servidor HTTP > Documentación > Versión 2.5 > Módulos
+
+

Módulo Apache mod_allowmethods

+
+

Idiomas disponibles:  en  | + es  | + fr 

+
+ + + +
Descripción:Restringe fácilmente qué métodos HTTP pueden ser usados en el servidor
Estado:Experimental
Identificador de Módulos:allowmethods_module
Fichero de Código Fuente:mod_allowmethods.c
+

Resumen de contenidos

+ +

Éste módulo hace fácil restringir qué métodos pueden ser usados en el servidor. + La configuración más común sería:

+ +
<Location "/">
+   AllowMethods GET POST OPTIONS
+</Location>
+ + +
+

Directivas

+ +

Bugfix checklist

Consulte también

+
+ +
top
+

AllowMethods Directiva

+ + + + + + + +
Descripción:Restringe acceso a los métodos HTTP indicados
Sintaxis:AllowMethods reset|HTTP-method +[HTTP-method]...
Valor por defecto:AllowMethods reset
Contexto:directory
Estado:Experimental
Módulo:mod_allowmethods
+ +

Los métodos HTTP son sensibles a mayúsculas y son generalmente, según RFC, indicados en mayúsculas. Los métodos GET y HEAD se tratan como equivalentes. La palabra clave reset puede ser usada para desactivar + mod_allowmethods en un contexto anidado más profundo:

+ +
<Location "/svn">
+   AllowMethods reset
+</Location>
+ + +

Precaución

+

No se puede restringir el método TRACE con este módulo; + use TraceEnable en su lugar.

+
+ +

mod_allowmethods fue escrito para reemplazar la implementación más engorrosa de +Limit y +LimitExcept.

+ +
+
+
+

Idiomas disponibles:  en  | + es  | + fr 

+
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_allowmethods.xml.es b/docs/manual/mod/mod_allowmethods.xml.es new file mode 100644 index 0000000000..1edc93027e --- /dev/null +++ b/docs/manual/mod/mod_allowmethods.xml.es @@ -0,0 +1,85 @@ + + + + + + + + + + + +mod_allowmethods +Restringe fácilmente qué métodos HTTP pueden ser usados en el servidor +Experimental +mod_allowmethods.c +allowmethods_module + + + +

Éste módulo hace fácil restringir qué métodos pueden ser usados en el servidor. + La configuración más común sería:

+ + +<Location "/"> + AllowMethods GET POST OPTIONS +</Location> + + +
+ + +AllowMethods +Restringe acceso a los métodos HTTP indicados +AllowMethods reset|HTTP-method +[HTTP-method]... +AllowMethods reset +directory +Experimental + + + +

Los métodos HTTP son sensibles a mayúsculas y son generalmente, según RFC, indicados en mayúsculas. Los métodos GET y HEAD se tratan como equivalentes. La palabra clave reset puede ser usada para desactivar + mod_allowmethods en un contexto anidado más profundo:

+ + +<Location "/svn"> + AllowMethods reset +</Location> + + +Precaución +

No se puede restringir el método TRACE con este módulo; + use TraceEnable en su lugar.

+
+ +

mod_allowmethods fue escrito para reemplazar la implementación más engorrosa de +Limit y +LimitExcept.

+
+
+ +
-- 2.40.0