阿里云中nginx配置域名解析

前期准备

  • 购买阿里域名并备案
  • 购买阿里云服务器

开始配置

1、云服务器配置安全组入规则(若无必要无需配置出规则),


image.png

2、域名配置解析(解析有一定的延迟,24小时左右,直至能ping通域名),


image.png

3、远程连接云,下载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;
# 配置三级域名的方式-开始
    server {
        listen       80;
        server_name  shop.***.com;
        location / {
            proxy_pass http://127.0.0.1:7002;
            proxy_redirect default;
        }
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }
    server {
        listen       80;
        server_name  admin.***.com;
        location / {
            proxy_pass http://127.0.0.1:7001;
            proxy_redirect default;
        }
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }
# 配置三级域名的方式-结束

    #gzip  on;
    server {
        listen       7002;
        server_name  localhost;
        location / {
            root /usr/react/exchangeStore;
            index  index.html index.htm;
        }
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }
    server {
        listen       7001;
        server_name  localhost;
        location / {
            root /usr/react/tortoiseDist/dist;
            index  index.html index.htm;
        }
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }
# 配置二级域名的方式-开始
    server {
        listen       80;
        server_name  ***.com;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   /usr/react/tortoise;
            index  index.html index.htm;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }
# 配置二级域名的方式-结束

}

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容