Skip to content

Instantly share code, notes, and snippets.

View kocogluali's full-sized avatar

Ali Kemal Koçoğlu kocogluali

View GitHub Profile
@kocogluali
kocogluali / Remote Revel app access config
Created February 3, 2017 18:41 — forked from tim-peterson/Remote Revel app access config
Config to access Go Revel app remotely, i.e., by IP address or domain name (NOT localhost, or NOT 127.0.0.1)
## nginx.conf ##
server {
listen 80;
# listen [::]:80 default_server ipv6only=on;
root /usr/share/nginx/html;
index index.html index.htm;
# Make site accessible from http://localhost/
@kocogluali
kocogluali / Vagrantfile
Created February 21, 2018 19:40 — forked from gokhansengun/Vagrantfile
Vagrantfile used in Istanbul Coders - Kubernetes Introduction Meetup
# -*- mode: ruby -*-
# vi: set ft=ruby :
K8S_DEV_BOX_NAME = "gsengun/k8s-dev-box"
K8S_DEV_BOX_VERSION = "17.12.27"
MASTER_NODE_IP_START="172.27.44.20"
WORKER_NODE_IP_START="172.27.44.10"
JOIN_TOKEN="abcdef.1234567890123456"