如何设置Nginx创建一个子域?

时间:2019-06-16 11:23:39

标签: nginx web-hosting nginx-config

我有一个域myartistbook.in,运行正常。我想为其创建一个名为adminpanel.myartistbook.in的子域。我遵循的步骤是:

  1. 将子域名添加到/ etc / hosts

     127.0.0.1 localhost
    ***.***.***.180 myartistbook
    ***.***.***.180 adminpanel.myartistbook


  1. 编辑了/etc/nginx/nginx.conf:
    user nginx;
    worker_processes auto;
    error_log /var/log/nginx/error.log;
    pid /run/nginx.pid;
    include /usr/share/nginx/modules/*.conf;
    events {
        worker_connections 1024;
    }
    http {
        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  /var/log/nginx/access.log  main;

    sendfile            on;
    tcp_nopush          on;
    tcp_nodelay         on;
    keepalive_timeout   65;
    types_hash_max_size 2048;

    include             /etc/nginx/mime.types;
    default_type        application/octet-stream;

    include /etc/nginx/conf.d/*.conf;

    server {
        listen       80 default_server;
        listen       [::]:80 default_server;
        server_name  myartistbook.in www.myartistbook.in;
        root         /root/krim.com;

        # Load configuration files for the default server block.
        include /etc/nginx/default.d/*.conf;

        location / {
        }

        error_page 404 /404.html;
            location = /40x.html {
        }

        error_page 500 502 503 504 /50x.html;
            location = /50x.html {
        }
    }

   server {
    listen 80;
    root /root/sites/adminpanel.com;
    server_name adminpanel.myartistbook.in www.adminpanel.myartistbook.in;
    index index.html;

    location / {
        try_files $uri $uri/;   
        }
    }
}

  1. 在/ etc / nginx / sites-available内添加了一个名为adminpanel.com的文件。
server {
          listen 80;
          server_name www.adminpanel.myartistbook.in;
          server_name ***.***.***.180;
          root /root/sites/adminpanel.com;
          index index.html;

          access_log /var/log/nginx/adminpanel.com.access.log;
          error_log /var/log/nginx/adminpanel.com.error.log;
          location / {
            try_files $uri /index.html =404;
          }
        }

  1. 将上述服务器块链接到/ etc / nginx / sites-enabled
  

sudo ln -s /etc/nginx/sites-available/adminpanel.com /etc/nginx/sites-enabled/adminpanel.com

  1. 使用
  2. 重新启动nginx
  

sudo服务nginx重新启动

访问网站时出现错误 adminpanel.myartistbook.in服务器IP地址。 我错过任何一步了吗?

1 个答案:

答案 0 :(得分:1)

连同server_name中涉及域和子域的服务器端配置一起,您需要确保myartistbook.in的DNS记录也已正确配置。

您是否已添加DNS记录以将adminpanel.myartistbook.in指向服务器?您可以为此添加A记录或CNAME记录。通过whatsmydns.net for adminpanel.myartistbook.in查看快速检查,看来您错过了这一步。请查看您的域名注册商的文档,了解如何执行此操作。

添加记录后,如果您的CNAME / A记录已生效,请使用whatsmydns.net再次进行快速检查。

在您的第3步中,将server_name修改为adminpanel.myartistbook.in,而不使用www,除非您实际上打算使用整个www.adminpanel.myartistbook.in,否则我不会这样做。我认为情况并非如此,因为您尝试在没有www:的情况下访问它:

  找不到

adminpanel.myartistbook.in的服务器IP地址。

此外,在将IP地址称为server {}并重定向到域/子域时,最好使用不同的server_name块。但是,从IP地址重定向到您的域/子域现在可能不再是优先事项。建议同时删除该行。

然后快速运行nginx -T来检查配置中的错误。如果检查成功,请重新加载您的nginx Web服务器,然后尝试再次访问该子域。

希望有帮助!