当前位置:   article > 正文

Nginx服务器使用多域名配置多个网站_nginx 基于域名 多个站点

nginx 基于域名 多个站点

1.配置思路

通过给不同的域名配置不同的反向代理实现将域名指向不同的端口,分别用Express在3000端口与3001端口代理静态Vue网站即可实现在一台服务器上部署多个Vue项目

user                 nobody;
worker_processes     1;
worker_rlimit_nofile 65535;

#error_log  logs/error.log  notice;

events {
    accept_mutex off;
    use epoll;
    worker_connections  8192;
}

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

    log_format       combinedio  '$remote_addr - $remote_user [$time_local] '
                                 '"$request" $status $body_bytes_sent '
                                 '"$http_referer" "$http_user_agent" $request_length $request_time $upstream_response_time';
    access_log logs/access.log combinedio;

    sendfile                     on;
    gzip                         on;
    tcp_nopush                   on;
    tcp_nodelay		         on;

    keepalive_timeout            0;
    client_body_timeout          10;
    client_header_timeout        10;

    client_header_buffer_size    1k;
    large_client_header_buffers  4  4k;
    output_buffers               2  32k;
    client_max_body_size	 64m;
    client_body_buffer_size      256k; 

    server_tokens off;

    include http.d/*.conf;
 
    server {
        listen       80;
        server_name  test.demo.club;


        location / {
	    add_header 'Access-Control-Allow-Origin' '*';
        add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
        add_header 'Access-Control-Allow-Headers' 'DNT,web-token,app-token,Authorization,Accept,Origin,Keep-Alive,User-Agent,X-Mx-ReqToken,X-Data-Type,X-Auth-Token,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
        add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range';
	    proxy_pass	http://127.0.0.1:3000;
        }

    }
    server {
      listen  80;
      server_name www.demo.club;

      location / {
        proxy_pass  http://127.0.0.1:3001;
      }
    }
    # include include/*.conf;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64

具体Nginx.conf如上

2.遇到的问题

最初思路并不是现在的实现方法,而是计划使用81端口反向代理至3001端口实现访问81端口来跳转第二页面,但实际情况是并不能通过域名:81的形式直接访问到81端口,因此此方式失败

另一种思路是通过配置路由来分配不同反向代理,如

# 配置重定向到/usr/financial
    #     location ^~/ifinancial {
    #   root /usr/financial;
    #   index index.html;
    #   rewrite ^/ifinancial/(.*)\.*$ /ifinancial/$1 break;
    #   try_files $uri $uri/ /ifinancial/index.html;
    # }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
但这种方式需要在Vue配置文件中同步更改根路由,同时网上只给出路由模式使用History时的解决方案,因此在多次尝试后舍弃了此种思路
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/264547
推荐阅读
相关标签
  

闽ICP备14008679号