nginx通过ip访问自动跳转到域名

  • A+
所属分类:系统文档

nginx通过ip访问自动跳转到域名

上一篇 /
下一篇  2020-07-14 16:08:43

/ 个人分类:nginx

查看( 4854 ) /
评论( 0 ) /
评分( 0 / 0 )

#user  nobody;

worker_processes  1;

events {

    worker_connections  1024;

}

http {

    include       mime.types;

    default_type  application/octet-stream;

    sendfile        on;

    keepalive_timeout  65;

        listen       8057;

        server_name  isxkyxxinfo.3322.org;

 location / {

            root   /opt/zhicheng/isky-common-web/common;

            index  index.html index.htm;

            try_files $uri $uri/ /index.html;

}

if ($host = '10.204.125.234'){

   return 301 http://isxkyxxinfo.3322.org:8057;

}

收藏

举报

TAG:

  • 我的微信
  • 这是我的微信扫一扫
  • weinxin
  • 我的微信公众号
  • 我的微信公众号扫一扫
  • weinxin