index











zhaoyatao.com

go to bottom

nginx reverse proxy





















# vim: delete all line: esc+gg+dG
# check my ip: ifconfig




# cd /etc/nginx/sites-available
# vim default


server {
        listen 80;
	server_name xxx.xxx.xxx.xxx;
        location / {
                proxy_pass http://neuralrad.com;
        }
}
  

# open a browser, type in your host's ip address.
done






# VMware host:
# how to fix my computer is ok to connect, but other computers are not connected
bridge connect mode















back to top