Linux服务器如何绑定域名?
1、首先用putty远程登录服务器。
2、进入此文件夹。cd /var/www/conf/ 编辑httd.confi文件vi httpd.conf,然后按I,进入编辑模式,修改如下参数:
例如:
<VirtualHost *:80>
ServerAdmin webmaster@dummy-host.example.com
DocumentRoot /www/docs/dummy-host.example.com
erverName v7o.cn #如果要修改主域名,修改此处域名并保存即可。
ErrorLog logs/dummy-host.example.com-error_log --记录错误日志文件路径
CustomLog logs/dummy-host.example.com-access_log common--客户访问日志路径
</VirtualHost>
如果要添加一个域名,添加ServerAlias字段即可。如添加abc123.com作为网站的第二个域名:
<VirtualHost *:80>
ServerAdmin webmaster@dummy-host.example.com
DocumentRoot /www/docs/dummy-host.example.com
ServerName v7o.cn
ServerAlias v7o.cn
ErrorLog logs/dummy-host.example.com-error_log --记录错误日志文件路径
CustomLog logs/dummy-host.example.com-access_log common--客户访问日志路径
</VirtualHost>
3、重启服务
# /var/www/bin/apachectl restart
修改完毕保存配置文件,需重启apache才能生效。
2023-07-25 广告