nginx 介紹
nginx(“engine x”)是一款是由俄羅斯的程式設計師igor sysoev所開發高效能的web和反向代理伺服器,也是一個imap/pop3/smtp 代理伺服器。在高連線並發的情況下,nginx是apache伺服器不錯的替代品。
nginx 安裝
1. 安裝編譯工具及函式庫檔案
yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel
2. 安裝pcre
自行下载解压源码包 cd 安装目录 ./configure make && make install//编译安装
3. 安裝nginx
自行下载解压源码包 cd 安装目录 ./configure make make install
nginx 常用命令
##
### nginx/sbin 目录下 ### ## 启动nginx ./nginx ## 关闭nginx ./nginx -s stop ## 重新加载配置文件 ./nginx -s reload
網域轉送配置
## nginx/conf/nginx.conf worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; server { listen 80; server_name www.fbm.com; location / { root html; index index.html index.htm; proxy_pass http://localhost:8080; } } server { listen 80; server_name fmp.hzfh.com; location / { proxy_pass http://fmp.hzfh.com; } } }附註:別忘了在防火牆上開放連接埠。
以上是Nginx網域轉送如何實現的詳細內容。更多資訊請關注PHP中文網其他相關文章!