Skip to content

Instantly share code, notes, and snippets.

View KennethanCeyer's full-sized avatar
🤣
Making freaking awesome stuff

Sungmin Han KennethanCeyer

🤣
Making freaking awesome stuff
View GitHub Profile
@KennethanCeyer
KennethanCeyer / Install-ARRFromWeb.ps1
Last active September 13, 2016 05:45 — forked from anderssonjohan/Install-ARRFromWeb.ps1
ARR Install script for AWS Beasntalk extension working on PowerShell. (This code working on AWS Beasntalk instance. (IIS 8.5, Windows 2012 RC2))
begin {
$TargetPath = $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath(‘.\’)
iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))
choco install curl
$packages = @( `
@{ Name = "webfarm.msi"; Url = "https://download.microsoft.com/download/F/E/2/FE2E2E07-22B5-4875-9A36-8B778D157F91/WebFarm2_x64.msi" }, `
@{ Name = "rewrite.msi"; Url = "https://download.microsoft.com/download/6/7/D/67D80164-7DD0-48AF-86E3-DE7A182D6815/rewrite_2.0_rtw_x64.msi" }, `
@{ Name = "arr.msi"; Url = "https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi" }
)
@KennethanCeyer
KennethanCeyer / ELBv2Sample.cs
Created September 12, 2016 01:49 — forked from guitarrapc/ELBv2Sample.cs
Amazon Application Elastic Load Balancing (ELB v2) C# Sample with HTTPS -> HTTP (HTTPS by ACM Certificate)
using Amazon.CertificateManager
using Amazon.EC2
using Amazon.ElasticLoadBalancingV2
using Amazon.ElasticLoadBalancingV2.Model
using System.Net.Http
using System.Threading.Tasks
using System.Windows.Forms.DataVisualization.Charting
public class Program
{
@KennethanCeyer
KennethanCeyer / websocket-elb.md
Created September 9, 2016 13:47 — forked from zhiguangwang/websocket-elb.md
Configure websockets behind an AWS ELB.