方法一:多個.conf方法
1. 到/usr/local/nginx/ 新建乙個目錄 vhosts 並建立兩個conf檔案,如:wodejj.com.conf ,xiaobing.com.conf。
內容如下:
#注意此處要放在server段的前面 不然會有「nginx: [emerg] duplicate "log_format" name "access" in /*****/conf/*****.conf:9」 的錯誤。
server
error_page
404 /404
.html;
# redirect server error pages to the static page /50x.html
#error_page
500502
503504 /50x.html;
location = /50x.html
# proxy the php scripts to apache listening on
127.0.0.1:80
# #location ~\.php$
# pass the php scripts to fastcgi server listening on
127.0.0.1:9000
# location ~\.php$
# deny access to .htaccess files,
if apache'
s document root
# concurs with nginx'
s one
# location ~ /\.ht
}
2. 將以上建立 的多個網域名稱配置檔案 conf ,包含到/usr/local/nginx/conf/nginx.conf 的配置檔案中
方法及內容是:
#include all hosts file;
include /usr/local/nginx/vhosts/*;
3. 重啟nginx
/usr/local/nginx/sbin/nginx -s reload
Nginx 配置多網域名稱方法
配置第乙個站點截圖如下 第一處標紅位置 為了多站點配置,做下鋪墊。第二處標紅位置 是自己修改的埠號和自己網域名稱,開始nginx.conf預設的埠號是80,為了避免已被使用,所以建議直接修改。第三處標紅位置 是php fpm的埠,自己可以 netstat ntlp 檢視一下當前linux下被占用的埠...
Nginx 多網域名稱配置的方法
很多情況下,需要使用多個網域名稱,但你只有一台伺服器,那如何搭建,讓一台伺服器可以訪問對個網域名稱,下面的方法是在伺服器上搭建nginx,直接修改其配置,如下 user www www 使用者名稱 第二個網域名稱服務 server 禁止通過伺服器ip位址訪問 server 允許ip位址對應的網域名稱...
NGINX配置多網域名稱
方法一 多個.conf方法 優點是靈活,缺點就是站點比較多配置起來麻煩 這裡以配置2個站點 2個網域名稱 為例,n 個站點可以相應增加調整,假設 配置 nginx virtual hosting 的基本思路和步驟如下 把2個站點 example1.com,example2.com 放到 nginx ...