Skip to content

Instantly share code, notes, and snippets.

@sunny0425
sunny0425 / dev.conf
Last active December 26, 2016 08:07 — forked from fnando/dev.conf
Nginx configuration for SSH tunnel
# 在服务器的nginx上添加配置
upstream tunnel {
server 127.0.0.1:3000;
}
server {
listen 80;
server_name dev.example.com;
location / {