国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 網站 > Apache > 正文

Apache 多端口多站點配置方法

2024-08-27 18:29:54
字體:
來源:轉載
供稿:網友
配置httpd.conf
監聽多個端口

復制代碼 代碼如下:


# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
#
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses.
#
#Listen 12.34.56.78:80
Listen 8081
Listen 8082
Listen 8083


#增加監聽端口
等以下內容都設置以后,可以通過netstat -n -a查看端口是否開啟
開啟虛擬站點

復制代碼 代碼如下:


# Virtual hosts
#Include conf/extra/httpd-vhosts.conf
#修改為
# Virtual hosts
Include conf/extra/httpd-vhosts.conf


配置PHP模塊
加載php模塊,php5apache2_2代表使用的是apache2.2或以上版本
LoadModule php5_module "c:/php/php5apache2_2.dll"
PHPIniDir "C:/php"
配置php文件類型映射
AddType application/x-httpd-php .php

配置conf/extra/httpd-vhosts.conf

復制代碼 代碼如下:


<VirtualHost *:8082>
ServerAdmin webmaster@dummy-host.localhost
DocumentRoot "C:/PhpDocRoot/Site1"
ServerName localhost
ServerAlias localhost
ErrorLog "logs/dummy-host.localhost-error.log"
CustomLog "logs/dummy-host.localhost-access.log" common
<Directory "C:/PhpDocRoot/Site1">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
<VirtualHost *:8083>
ServerAdmin webmaster@dummy-host2.localhost
DocumentRoot "C:/PhpDocRoot/Site2"
ServerName localhost
ErrorLog "logs/dummy-host2.localhost-error.log"
CustomLog "logs/dummy-host2.localhost-access.log" common
<Directory "C:/PhpDocRoot/Site2">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
<Directory...>...</Directory>


一定不能少
重新啟動apache試一下,如果出錯,查看一下logs下面的log文件還有windows的事件查看器記錄的錯誤日志。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 南雄市| 娄烦县| 连云港市| 嘉祥县| 崇礼县| 保靖县| 泸水县| 临海市| 炉霍县| 商河县| 搜索| 滨海县| 新密市| 新化县| 汕尾市| 伽师县| 满洲里市| 榆林市| 乌兰县| 革吉县| 三门峡市| 罗平县| 临汾市| 腾冲县| 塘沽区| 九江市| 临泽县| 康保县| 乡宁县| 呼图壁县| 正镶白旗| 牟定县| 于田县| 山丹县| 湘潭县| 新野县| 毕节市| 河西区| 邳州市| 淮滨县| 连州市|