阿里雲nginx建立多站點

2021-09-28 11:29:56 字數 976 閱讀 2505

最近開始用阿里雲的vps,用了它的一鍵安裝包安裝了php環境,nginx的。下面記錄建立多站點的心得。

首先php安裝好後會自帶安裝乙個phpwind的站點。

檔案目錄存放在 /alidata/www 下

配置檔案是分開單獨存放的,注意網上的很多都不准:

phpwind的配置檔案/alidata/server/nginx/conf/vhosts/phpwind.conf

然後是在/alidata/server/nginx/conf/nginx.conf中呼叫 phpwind.conf檔案 是通過 nginx.conf的include /alidata/server/nginx/conf/vhosts/*.conf;這一句

然後我們新增站點:例如pro1

站點檔案存放在  /alidata/www 下

新增pro1的配置檔案 pro1.conf

1

server

10 #error_page 404 /404

.html;

11 # redirect server error pages to the static page /50x.html

12#

13 error_page 500

502503

504 /50x.html;

14 location = /50x.html

17 }

將pro1.conf 放在/alidata/server/nginx/conf/vhosts 下

重啟nginx /etc/init.d/nginx start/stop/restart/reload 注意這裡是讓你選的   /etc/init.d/nginx restart 重啟

然後配置本地host 就可以檢視你新建的站點了 

nginx配置多站點

nginx的配置檔案中如何配置多個站點,實際上一台伺服器上有時候需要部署多個站點,我們需要建立一些virtual host,通過其他埠 another virtual host using mix of ip name and port based configuration server loca...

nginx安裝 多站點

區別 yum 不支援定製,安裝檔案分散不好管理 make原始碼 安裝複雜,模組定製,安裝目錄自定義,方便管理 wget c tar zxf nginx 1.18.0.tar.gz cd nginx 1.18.0 依賴yum install y gcc c編譯器 yum install y gcc c...

多站點php 多站點 SPHP 看雲

多站點使用入口檔案的方式控制,要新增乙個站點,直接在public目錄裡面新增乙個入口檔案即可。新增多站點 以index admin站點為例 1.子網域名稱方式 apache伺服器 1.站點配置。在apache的httpd vhost中加入兩個站點的配置 預設站點配置 directoryindex i...