1. 程式人生 > >運用nginx和阿里雲解析配置二級域名 設定不同埠號

運用nginx和阿里雲解析配置二級域名 設定不同埠號

server {
        listen 80 default_server; #監聽埠
        root /mnt/aa; #訪問根目錄
        index index.html index.htm; #預設頁,可以不設定
        server_name www.yanyusun.com; #根據域名跳轉
        location / {
                try_files $uri $uri/ =404;
                proxy_pass http://127.0.0.1:8081;  #跳轉的路徑
        }
}
server {
        listen 80;#監聽埠
        root /mnt/bb;
        index index.html index.htm;
        server_name bs.yanyusun.com;
        location / {
                try_files $uri $uri/ =404;
                proxy_pass http://127.0.0.1:8082; #另一個路徑
        }
}