|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
如果你只是想应付一下操作系统的课程,劝你最好别学,或者说不要指望能用的怎么样。
设置httpd.conf
监听多个端口
.代码以下:
#Listen:AllowsyoutobindApachetospecificIPaddressesand/or
#ports,insteadofthedefault.Seealsothe<VirtualHost>
#directive.
#
#ChangethistoListenonspecificIPaddressesasshownbelowto
#preventApachefromglommingontoallboundIPaddresses.
#
#Listen12.34.56.78:80
Listen8081
Listen8082
Listen8083
#增添监听端口
等以下内容都设置今后,能够经由过程netstat-n-a检察端口是不是开启
开启假造站点
.代码以下:
#Virtualhosts
#Includeconf/extra/httpd-vhosts.conf
#修正为
#Virtualhosts
Includeconf/extra/httpd-vhosts.conf
设置PHP模块
加载php模块,php5apache2_2代表利用的是apache2.2或以上版本
LoadModulephp5_module"c:/php/php5apache2_2.dll"
PHPIniDir"C:/php"
设置php文件范例映照
AddTypeapplication/x-httpd-php.php
设置conf/extra/httpd-vhosts.conf
.代码以下:
<VirtualHost*:8082>
ServerAdminwebmaster@dummy-host.localhost
DocumentRoot"C:/PhpDocRoot/Site1"
ServerNamelocalhost
ServerAliaslocalhost
ErrorLog"logs/dummy-host.localhost-error.log"
CustomLog"logs/dummy-host.localhost-access.log"common
<Directory"C:/PhpDocRoot/Site1">
OptionsIndexesFollowSymLinks
AllowOverrideNone
Orderallow,deny
Allowfromall
</Directory>
</VirtualHost>
<VirtualHost*:8083>
ServerAdminwebmaster@dummy-host2.localhost
DocumentRoot"C:/PhpDocRoot/Site2"
ServerNamelocalhost
ErrorLog"logs/dummy-host2.localhost-error.log"
CustomLog"logs/dummy-host2.localhost-access.log"common
<Directory"C:/PhpDocRoot/Site2">
OptionsIndexesFollowSymLinks
AllowOverrideNone
Orderallow,deny
Allowfromall
</Directory>
</VirtualHost>
<Directory...>...</Directory>
必定不克不及少
从头启动apache试一下,假如堕落,检察一下logs上面的log文件另有windows的事务检察器纪录的毛病日记。
在linux中学习命令的最好办法是学习Shell脚本编程,Shell脚本比起其他语言来学习简单,但是功能却十分强大.通过学习Shell编程,能让你掌握大量的linux命令。 |
|