以下配置的路徑以阿里云提供的標(biāo)準(zhǔn)環(huán)境路徑為準(zhǔn),如果您另行安裝,請(qǐng)根據(jù)實(shí)際安裝路徑去找到您的配置文件進(jìn)行配置。
假如我們需要在我們的網(wǎng)站www.test.com上增加綁定一個(gè)m.test.com和一個(gè)test.com的域名,請(qǐng)進(jìn)行如下類似的操作:
1.cd /alidata/server/nginx/conf/vhosts/ 找到您的網(wǎng)站配置文件,一般是您的域名.conf,例如域名是:www.test.com,那就應(yīng)該是www.test.com.conf。
2.vim www.test.com.conf 修改這個(gè)配置文件,您應(yīng)該會(huì)看到如下類似的配置內(nèi)容:
server {
listen 80;
server_name www.test.com;
root /www/web/www_test_com/public_html;
index index.php;
error_page 400 /errpage/400.html;
error_page 403 /errpage/403.html;
error_page 404 /errpage/404.html;
location ~ \.php$ {
proxy_pass http://127.0.0.1:88;
include naproxy.conf;
}
location / {
try_files $uri @apache;
}
location @apache {
proxy_pass http://127.0.0.1:88;
include naproxy.conf;
}
access_log /www/web_logs/www.test.com_access.log wwwlogs;
error_log /www/web_logs/www.test.com_error.log;
}
3.點(diǎn)擊字母“i”開(kāi)始編輯文件,輸入內(nèi)容:
server {
listen 80;
server_name www.test.com test.com m.test.com;
root /www/web/www_test_com/public_html;
index index.php;
error_page 400 /errpage/400.html;
error_page 403 /errpage/403.html;
error_page 404 /errpage/404.html;
location ~ \.php$ {
proxy_pass http://127.0.0.1:88;
include naproxy.conf;
}
location / {
try_files $uri @apache;
}
location @apache {
proxy_pass http://127.0.0.1:88;
include naproxy.conf;
}
access_log /www/web_logs/www.test.com_access.log wwwlogs;
error_log /www/web_logs/www.test.com_error.log;
}
其中:
ServerName www.test.com test.com m.test.com;綁定的網(wǎng)站域名(您如果有多個(gè)域名添加在這里)
index index.php; 設(shè)置默認(rèn)首頁(yè)
root /www/web/www_test_com/public_html; 是指定網(wǎng)站的目錄。
按“esc”退出編輯模式,輸入“:wq”保存退出。
4.輸入命令:nginx –s reload 重啟nginx測(cè)試。
5.測(cè)試網(wǎng)站。請(qǐng)?jiān)跒g覽器中輸入域名,測(cè)試設(shè)置。
會(huì)員評(píng)論