C/C++教程

CentOS 7.7 64位阿里云Apache服务器一个域名搭建多个网站详细流程

本文主要是介绍CentOS 7.7 64位阿里云Apache服务器一个域名搭建多个网站详细流程,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

CentOS 7.7 64位阿里云Apache服务器一个域名搭建多个网站详细流程

 首先修改vhost(etc/httpd/confd) ,

<VirtualHost *:81>
ServerName test.com
ServerAlias www.test.com
DocumentRoot /var/www/html/test.com
DirectoryIndex index.htm index.html index.php
</VirtualHost>
<Directory "/var/www/html/test.com">
    Options Indexes FollowSymLinks
    AllowOverride All
    Order allow,deny
    Allow from all
</Directory>

http(etc/httpd/conf)文件,加自己的端口根据模板加

listen 81,
打开控制台,添加解析记录,修改安全组规则


重启apache
systemctl restart httpd

这篇关于CentOS 7.7 64位阿里云Apache服务器一个域名搭建多个网站详细流程的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!