如何使用nginx屏蔽子域

How to mask sub-domain using nginx

我有一个与主域一起工作的 nodejs 应用程序,它的连接思想 nginx 代理通过重定向规则传递给 nodejs 应用程序,根据重定向规则,如果请求来自移动设备,它将重定向到一个子域,它工作正常。

主域和子域都是不同的版本,并且运行不同的服务器。

现在我想屏蔽这个子域,我不想在浏览器中看到我的子域,我该怎么做。

下面提到了我的 nginx 配置。

server {
        listen         80;
        server_name    mydomain;
        return         301 https://$server_name$request_uri;
}
include mime.types;
server {
        listen 443 ssl;
    server_name mydomain;
        ssl_certificate /etc/ssl/CA_Bundle.ca-bundle;
        ssl_certificate_key /etc/ssl/2021/server.key;
    location / {
                add_header Access-Control-Allow-Origin *;
                proxy_set_header Host $host;
                proxy_pass http://172.17.0.1:8080;
                proxy_redirect off;
                expires off;

      set $agentflag 0;

      if ( $http_user_agent ~* "(Mobile)" ){
                set $agentflag 1;
      }

      if ($request_uri ~ "user-agent"){
              set $agentflag 0;
      }


      if ( $agentflag = 1 ) {
              rewrite ^/(.*)/$ / permanent;
              return 307 https://mobile.mydomain$request_uri;
      }
        }
}


server {
        listen         80;
        server_name    mobile.mydomain;
        return         301 https://$server_name$request_uri;
}
include mime.types;
server {
        listen 443 ssl;
    server_name mobile.mydomain;
        ssl_certificate /etc/ssl/CA_Bundle.ca-bundle;
        ssl_certificate_key /etc/ssl/2021/server.key;
    location / {
                add_header Access-Control-Allow-Origin *;
                proxy_set_header Host $host;
                proxy_pass http://172.17.22.1:8081;
                proxy_redirect off;
                expires off;
    }
}

现在工作正常,

我使用了 proxy_pass ,而不是 rewrite.

  if ( $agentflag = 1 ) {
          proxy_pass http://IP-address-mobile-app;