【转】apache配置多个http端口
原文网址:https://blog.csdn.net/shineniefei/article/details/76691481
apache配置多个http端口
方法一:使用httpd-vhosts
进入apache配置目录,如/usr/local/apache/conf/
打开httpd.conf
配置多个监听窗口,81,82
ServerName localhost:81
# Listen 80
Listen 81
Listen 82
找到#Include conf/extra/httpd-vhosts.conf,去掉#号,解除注释
进入/usr/local/apache/conf/extra目录,打开httpd-vhosts.conf文件
配置NameVirtualHost *:81
<VirtualHost *:81>
ServerAdmin host1.example.com
DocumentRoot "/home/public/web/host1"
ServerName localhost:81
ServerAlias localhost:81
ErrorLog "logs/host1.example.com-error_log"
#CustomLog "logs/host1.example.com-access_log common"
</VirtualHost>
<VirtualHost *:82>
ServerAdmin host2.example.com
DocumentRoot "/home/public/web/host2"
ServerName localhost:82
ErrorLog "logs/host1.example.com-error_log"
#CustomLog "logs/host1.example.com-access_log common"
</VirtualHost>
方法二:只修改 httpd.conf
进入apache配置目录,如/usr/local/apache/conf/
打开httpd.conf
配置多个监听窗口,81,82
Listen 81
Listen 82
并在文件的最后增加:
<VirtualHost *:81>
DocumentRoot /home/public/web/host1
ServerName localhost:81
</VirtualHost>
<Directory /home/public/web/host1>
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
<VirtualHost *:82>
DocumentRoot /home/public/web/host2
ServerName localhost:82
</VirtualHost>
<Directory /home/public/web/host2>
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
apache不同版本 目录权限设置
old使用
Order allow,deny
Allow from all
new使用
Require all granted
new example
#add for WWW
Listen 91
<VirtualHost *:91>
DocumentRoot "D:/IDE/WWW"
ServerName localhost:91
</VirtualHost>
<Directory "D:/IDE/WWW">
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 地球OL攻略 —— 某应届生求职总结
· 提示词工程——AI应用必不可少的技术
· Open-Sora 2.0 重磅开源!
· 周边上新:园子的第一款马克杯温暖上架
2019-03-14 【转】如何转换身份证照片中24位真彩色RGB模式
2015-03-14 【转】Android Building System 总结 - 一醉千年 - CSDN博客
2015-03-14 【转】Android ROM研究---Android build system增加模块
2015-03-14 【转】Android编译系统详解(三)——编译流程详解
2015-03-14 【转】单独编译android framework模块出现的问题
2015-03-14 【转】Android 驱动开发系列四
2015-03-14 【转】模块编译Android源码方法