最近在閱讀ngx_http_upstream_module源碼,首先要讓該模組運行起來,然後調試跟踪。這裡介紹了配置簡單的nginx反向代理。
一、安裝httpd
yum install httpd
echo “hello world!” > /var/www/html/index.htmlecho “hello world!” > /var/www/html/index.html
echo “hello world!” > /var/www/html/index.html
完成了上述步驟,可以測試一下:curl http://127.0.0.1
二、修改nginx的設定檔nginx.conf
80埠
…
location / {
…
}
三、測試
到這裡,nginx的反向代理和upstream模組就能跑起來了。檢定如下:
curl http://127.0.0.1:8080
以上就介紹了配置簡單的nginx反向代理,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。