Apache添加多端口及实现单ip多端口映射的方法
先给大家说下apache添加多端口的方法,具体步骤如下所示:
Apacheconf 目录下
添加端口监听
Vhost.conf简单写写
下面是有关apache实现单ip多端口映射的内容
我使用一个apache服务器。在我的apache根目录下有这么几个网站,如Test、Child这两个文件夹,也就是两个网站。我想这样,当我访问http://localhost的时候就访问Test,当我访问http://localhost:8080的时候就访问Child。
我们需要配置apache。讲apache文件夹下的conf中的httpd.conf打开,搜索Include conf/extra/httpd-vhosts.conf,将前面的注释去掉。再打开conf/extra/httpd-vhosts.conf文件,清除里面的内容,这样写道:
NameVirtualHost *:8080ServerName localhost ServerAlias localhosts DocumentRoot D:/development/www/Child NameVirtualHost *:80ServerName localhost ServerAlias localhost DocumentRoot D:/development/www/Test
栏 目:Linux
下一篇:Linux下忘记mysql密码该如何修改mysql密码
本文标题:Apache添加多端口及实现单ip多端口映射的方法
本文地址:https://idc91.com/fuwuqizl/2498.html
您可能感兴趣的文章
- 05-10Ubuntu系统安装ANSYS2021R1
- 05-10ANSYS2021R1安装方法Linux centos Ubuntu系统
- 11-07Linux中一对多配置日志服务器的详细步骤
- 11-07linux服务器安装SonarQube代码检测工具的详细步骤
- 11-07Apache自带的ab压力测试工具的实现
- 11-07apache虚拟主机配置的三种方式(小结)
- 11-07Linux在两个服务器直接传文件的操作方法
- 11-07xshell5使用ssh连接阿里云服务器的实现步骤
- 11-07linux查看服务器开放的端口和启用的端口多种方式
- 11-07Xshell连接centOS7并与CentOS7联网