Skip to content

Instantly share code, notes, and snippets.

@mohanpedala
mohanpedala / Forward_Proxies_Reverse_Proxies.md
Last active July 31, 2017 15:23
Forward Proxies and Reverse Proxies/Gateways Apache

Forward Proxies and Reverse Proxies/Gateways

Apache HTTP Server can be configured in both a forward and reverse proxy (also known as gateway) mode.

mod_proxy and related modules implement a proxy/gateway for Apache HTTP Server, supporting a number of popular protocols as well as several different load balancing algorithms. Third-party modules can add support for additional protocols and load balancing algorithms.

mod_proxy, which provides basic proxy capabilities

Forward Proxy

  1. An ordinary forward proxy is an intermediate server that sits between the client and the origin server.
  2. In order to get content from the origin server, the client sends a request to the proxy naming the origin server as the target.
@mohanpedala
mohanpedala / Windows_powershell_tips.md
Created September 20, 2017 19:50
Windows Powershell Tips
  • Creating and Modifying Environment Variables Tip
@mohanpedala
mohanpedala / Hashi_corp_tips.md
Last active September 22, 2017 17:20
Hashi Corp user variable managment
@mohanpedala
mohanpedala / Random_notes.md
Last active September 22, 2017 17:20
Random Notes
@mohanpedala
mohanpedala / Nexus_Types_of_Artifacts.md
Last active September 26, 2017 16:48
Repository management for different types of artifacts in nexus

Application type and Repositories

  • Java - Maven2
  • .NET - Nuget
  • Node.js - Npm
  • Docker images - Docker
  • Javascript - Bower
  • Python - PyPI
  • Ruby - Rubygems
  • Static Content and other (like zip files etc) - Raw
@mohanpedala
mohanpedala / svn_migration.md
Last active May 17, 2019 17:50
svn_migration

SVN - GIT Migration

SVN Repo setup

Steps :

  1. Create a new branch in svn repo - phani_branch
svn copy --username swarupdonepudi https://svn.riouxsvn.com/swarup-repo/branches/branch1 https://svn.riouxsvn.com/swarup-repo/branches/phani_branch -m "Creating a branch for final test"
  1. Checkout phani_branch
@mohanpedala
mohanpedala / micro_service.md
Last active December 27, 2017 00:17
Micro_service
A micro service is a collection of loosley coupled services which forms a large applcation.
A microservice or micro service architecture helps to easly manage a large application.