Skip to content

Instantly share code, notes, and snippets.

View taehwanno's full-sized avatar

Taehwan Noh taehwanno

View GitHub Profile

Keybase proof

I hereby claim:

  • I am taehwanno on github.
  • I am taehwanno (https://keybase.io/taehwanno) on keybase.
  • I have a public key ASATljmMWMbT-18MjMc3jfxfCPEh-reyHjGt8DIlvzWbeQo

To claim this, I am signing this object:

lsof -i tcp:8080
@taehwanno
taehwanno / nginx-simple-spa-setup
Last active January 18, 2017 01:46
nginx simple spa setup (no proxy setup)
server {
listen 80 default_server;
server_name example.co.kr;
if ($http_x_forwarded_proto = 'http') {
return 301 https://example.co.kr$request_uri;
}
location / {
root /home/ubuntu/project/public;
@taehwanno
taehwanno / ubuntu-14.04-nginx-kor-setting
Last active November 24, 2016 02:56
ubuntu nginx settings for korean (+ node.js >= 6.x, git)
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install nginx
sudo service nginx stop
sudo apt-get remove vim-tiny
sudo apt-get install vim
sudo apt-get install language-pack-ko