Linux apache httpd配置多个端口
1:安装完成LAMP环境具体可查看我的另一篇文章 https://blog.csdn.net/qq_29099209/article/details/792061702:进入 /etc/httpd/conf 目录打开http.conf 文件在Listen 80下面添加你所需要监听的端口在末尾添加Include conf/extra/httpd-vhosts.conf3:创建extr...
·
1:安装完成LAMP环境
具体可查看我的另一篇文章 https://blog.csdn.net/qq_29099209/article/details/79206170
2:进入 /etc/httpd/conf 目录
打开http.conf 文件
在Listen 80下面添加你所需要监听的端口
在末尾添加
Include conf/extra/httpd-vhosts.conf
3:创建extram目录
mkdir extra
4:创建http-vhosts.conf文件
vi httpd-vhosts.conf
在文件中添加
<Directory "/home/kushou">
Options FollowSymLinks
AllowOverride None
Allow from all
</Directory>
<VirtualHost *:81>
DocumentRoot /home/kushou
ServerName localhost:81
</VirtualHost>
5:重启Apache服务
/bin/systemctl restart httpd.service
配置好后访问的时候如果出现访问没有权限,那就是httpd.conf文件里面的
<Directory />
AllowOverride none
Require all denied
</Directory>
改成
<Directory />
AllowOverride none
Require all granted
</Directory>
更多推荐
已为社区贡献1条内容
所有评论(0)