首页 > 运维 > Apache > apache配置多个http端口的方法

apache配置多个http端口的方法

王林
发布: 2020-11-03 17:03:21
转载
4732 人浏览过

apache配置多个http端口的方法

方法一:使用httpd-vhosts

(相关推荐:apache

进入apache配置目录,如/usr/local/apache/conf/

打开httpd.conf文件

配置多个监听窗口81,82

1

2

3

4

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

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

<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

1

2

Listen   81

Listen   82

登录后复制

并在文件的最后增加如下内容:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

<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不同版本 目录权限设置

1、old使用

1

2

Order allow,deny

Allow from all

登录后复制

2、new使用

1

Require all granted

登录后复制

3、new example

1

2

3

4

5

6

7

8

9

10

11

12

#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>

登录后复制

以上是apache配置多个http端口的方法的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
Nginx/Apache 和Apache Tomcat 的区别
来自于 1970-01-01 08:00:00
0
0
0
Apache自动停
来自于 1970-01-01 08:00:00
0
0
0
apache停止
来自于 1970-01-01 08:00:00
0
0
0
apache重启失败
来自于 1970-01-01 08:00:00
0
0
0
apache出错
来自于 1970-01-01 08:00:00
0
0
0
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板