apache 多端口配置多站点(centos7)

前端之家收集整理的这篇文章主要介绍了apache 多端口配置多站点(centos7)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<table class="text"><tr class="li1">
<td class="ln"><pre class="de1">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

配置文件httpd.conf(/etc/httpd/conf)中添加监听端口,如:Listen 8008 2.配置虚拟主机,如:  ServerName test.com  DocumentRoot "/home/test/www"  DirectoryIndex index.PHP index.html     AllowOverride all   Require all granted   3.(注意防火墙)在iptables中打开添加端口通过 (/etc/sysconfig/iptables) 4. #systemctl restart httpd.service  #systemctl restart iptables.service   原文链接:https://www.f2er.com/centos/419748.html

猜你在找的CentOS相关文章