Skip to content

Instantly share code, notes, and snippets.

@honktang
Created August 7, 2012 08:33
Show Gist options
  • Save honktang/3283294 to your computer and use it in GitHub Desktop.
Save honktang/3283294 to your computer and use it in GitHub Desktop.
Make localhost as web server
#local
ssh -NfR 8080:localhost:80 user@honktang.com
#remote nginx.conf
server {
listen 80;
server_name honktang.com;
location / {
proxy_pass http://127.0.0.1:8080;
proxy_redirect off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
#browser
http://honktang.com
@andyfun
Copy link

andyfun commented Aug 7, 2012

Bu

@honktang
Copy link
Author

replace the "honktang.com" with your IP/domainname

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment