阿里云服务器怎么绑定域名?

有些话、适合烂在心里 提交于 2020-01-25 16:26:12

阿里云服务器怎么绑定域名?下面来解释一下Nginx和Apache绑定域名方法。

Nginx 服务绑定域名

以 YUM 安装的 Nginx 为例:

  1. 执行命令 vi /etc/nginx/nginx.conf 编辑 Nginx 的配置文件,将默认的server {...} 配置修改为以下内容:
    1. server {
    2. listen 80 default_server;
    3. server_name www.123.com;
    4. root /home/web1;
    5.  
    6. location / {
    7. }
    8.  
    9. error_page 404 /404.html;
    10. location = /40x.html {
    11. }
    12.  
    13. error_page 500 502 503 504 /50.xhtml;
    14. location = /50x.html {
    15. }
    16. }
    17.  
    18. server {
    19. server_name www.abc.com;
    20. root /home/web2;
    21.  
    22. location / {
    23. }
    24.  
    25. error_page 404 /404.html;
    26. location = /40x.html {
    27. }
    28.  
    29. error_page 500 502 503 504 /50x.html;
    30. location = /50x.html {
    31. }
    32. }
    • 访问 www.123.com 时,跳转到 /home/web1 目录。
    • 访问 www.abc.com 时,跳转到 /home/web2 目录。
  2. 执行命令 nginx -s reload 重启 Nginx 服务。

 

Apache 服务绑定域名

以一键安装包配置的 Apache 环境为例:

  1. 执行命令 cd /alidata/server/httpd/conf/vhosts/ 进入站点配置文件目录。
  2. 执行命令 vi aa.conf 新建一个配置文件,按下键盘上的字母 “I” 键,复制并粘贴以下内容:
    1. Order allow,deny
    2. Deny from all
    3. DocumentRoot /alidata/www/test
    4. ServerName www.test.com
    5. ServerAlias test.com
    6. ErrorLog "/alidata/log/httpd/test-error.log"
    7. CustomLog "/alidata/log/httpd/test.log"

    注意:您需要修改对应的日志名字以区分不同网站的日志信息。

  3. 执行命令 /alidata/server/httpd/bin/apachectl restart 重启 Apache 服务。

 

详细的大家可以参考一下服务器之家这篇文章:阿里云服务器怎么绑定域名

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!