El experimentador que no sabe lo que está buscando no comprenderá lo que encuentra. (Claude Bernard).
Setting Up Github for Windows behind a Proxy Server
Obtener enlace
Facebook
X
Pinterest
Correo electrónico
Otras aplicaciones
Thanks to: https://medium.com
Here is a simple method to let Git pass through your server proxy and hopefully allow you to complete repository cloning.
Upon
the installation of Github for Windows, a configuration file is
automatically created and stored in C:\Users\<your computer
username>\.gitconfig — Open this file using any text editor. I
recommend notepad++.
Edit the .gitconfig file to include calls for proxy registration — HTTP and HTTPS
An image showing the edits made to the .gitconfig file for it to pass through a server proxy
This handy website
determines what your company’s/institution’s proxy address is. After
the proxy address, you need to provide the port to which your
institution sets up the proxy to pass. *note the colon in between*.
By
default, this port value is set to 8080. However, due to security
reasons and channel availability this may be changed to some other
value. You may ask for this information from any of the system
administrators in your company.
AND THAT’S IT!
Marvel in awe as your online repository finally completes its cloning procedure.
Thank to: https://fortixpert.blogspot.com/ Este artículo describe cómo configurar FortiGate para Hairpin con el uso de set match-vip y match-vip-only. En este escenario, tanto el PC como el Servidor están detrás de FortiGate y el PC quiere conectarse al Servidor apuntando a su dirección externa (92.0.2.10) en lugar de la real (10.10.10.10). Esto se llama Hairpin NAT. Solución : La solución dependerá de cómo sea el objeto IP Virtual (VIP). Solución 1 : La interfaz externa en el VIP está configurada a una interfaz particular (en este caso a wan1) #config firewall vip edit "VIP" set extip 92.0.2.10 set extintf 'wan1' set mappedip 10.10.10.10 next end Nota: En este escenario, la IP externa VIP puede ser la misma que la IP de la interfaz (es decir, 92.0.2.2) Se necesitan dos políticas: 1) Una política de entrada con ...
🔧 Paso 1: Editar el archivo de configuración de Nginx Objetivo: Configurar el servidor Nginx para que rechace solicitudes HTTP que usen los métodos PUT, DELETE y TRACE, devolviendo un código de estado 405 (Method Not Allowed) . ¿Por qué hacerlo? Por razones de seguridad . Algunos métodos HTTP como PUT , DELETE y TRACE pueden representar riesgos si no son utilizados correctamente. Si tu aplicación no los necesita, es recomendable deshabilitarlos. Instrucciones: Abre el archivo de configuración de Nginx. Generalmente se encuentra en: /etc/nginx/nginx.conf O también puede estar dentro del directorio: /etc/nginx/sites-available/ dependiendo de cómo esté estructurada tu instalación. Busca la sección que tenga location / { ... } o agrégala dentro del bloque server { ... } . Dentro de ese bloque, agrega las siguientes condiciones: location / { if ($request_method = PUT) { return 405; } if ($request_method = DELETE) { return 405; } ...
Thanks to: http://www.cisco.com Introduction A problem with static routes is that no inherent mechanism exists to determine if the route is up or down. The route remains in the routing table even if the next hop gateway becomes unavailable. Static routes are removed from the routing table only if the associated interface on the security appliance goes down. In order to solve this problem, a static route tracking feature is used to track the availability of a static route and, if that route fails, remove it from the routing table and replace it with a backup route. This document provides an example of how to use the static route tracking feature on the PIX 500 Series Security Appliance or the ASA 5500 Series Adaptive Security Appliance in order to enable the device to use redundant or backup Internet connections. In this example, static route tracking allows the security appliance to use an inexpensive connection to a secondary Internet service provider (ISP) in the event th...
Comentarios
Publicar un comentario
Dime si la información de este blog te sirvio.