nginx 同一端口部署多个项目

2020-12-28  本文已影响0人  Mylovesunshine

nginx配置文件

#user  nobody;
worker_processes  1;

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

#pid        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;

    upstream p1_server {
      server localhost:8081;
    }
   #HTTP服务器
    server {
       
        listen       9897;
        
        server_name  localhost;
        
        
       
        charset utf-8;
        
         location / {
            root   html;
            try_files $uri $uri/ @router;
            index  index.html;
         }
  
         location /en {
            alias  html/en;
            try_files $uri $uri/ /en/index.html;
            index  index.html;
         }
         location @router {
            rewrite ^.*$ /index.html last;
         }
    }
   
    
    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}

重点:

       location / {
            root   html;
            try_files $uri $uri/ @router;
            index  index.html;
         }
  
         location /en {
            alias  html/en;
            try_files $uri $uri/ /en/index.html;
            index  index.html;
         }
         location @router {
            rewrite ^.*$ /index.html last;
         }

说明:en自定义和前台配置保持一致就可
3.前台配置
vuecli3以下,我本地是2.9.6

1) 粘贴图片.png
2) 粘贴图片2.png
3) 粘贴图片4.png

4.打包将dist文件复制到nginx配置的目录下

上一篇 下一篇

猜你喜欢

热点阅读