首頁  >  文章  >  運維  >  nginx如何設定多個前端項目

nginx如何設定多個前端項目

王林
王林轉載
2023-05-21 10:34:202739瀏覽

最近一台伺服器要設定多個前端項目,當然前後端分離就需要nginx來設定了。

單一項目還好說,如下
修改nginx的nginx.conf設定檔

#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

pid /usr/local/nginx/logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
 
    server {
        listen       8000;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;
        
        location / {
            root   /var/www/;
            #index  index.html index.htm;
        }
        location ~ /static/.*\.(gif|jpg|jpeg|png|bmp|swf)$ {
            root /var/www/project;
        }

        location ~ /static/.*\.(js|css)$ {
            root /var/www/project;
        }

        location = /project {
            root   /var/www/project;
            index  index.html index.htm;
        }
   
    }

}

但是出現了多個項目也需要在nginx.conf配置

項目基於vue cli 開發的,打包時需要配置js,css 等靜態檔案的連接位址
修改如下設定檔

nginx如何設定多個前端項目

##根據專案名字或路徑名修改在對應的項目裡

assetsPublicPath: '/project/'
-----------------------
assetsPublicPath: '/project1/'

然後再來設定nginx.conf

user root;
worker_processes  1;

pid /usr/local/nginx/logs/nginx.pid;

events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       8000;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;
        
        location / {
            root   /var/www;
            #index  index.html index.htm;
        }

        location = /project1 {
            root   /var/www/project1;
            try_files $uri $uri/ /project1/index.html;
            index  index.html index.htm;
        }
        
        location = /project2{
            root /var/www/project2;
            try_files $uri $uri/ /project2/index.html;
            index  index.html index.htm;
        }

    }

}

這裡注意呢user root; 需要加上, 不然範圍報500,

然後重啟一下nginx

 先停止
  ./nginx -s quit
 再重启
 /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

當然nginx -s reload 可以,但是可能報錯,解決就用上面辦法

nginx如何設定多個前端項目

成功訪問

192.168.
.:8000/project/index.html192.168.
.:8000/project1/index.html

以上是nginx如何設定多個前端項目的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:yisu.com。如有侵權,請聯絡admin@php.cn刪除