以最简便的ports的方式来进行安装
步骤:
Apache安装
#cd /usr/ports/www/apache22
#make install clean
在选择模块中,选取常用的模块或者选择默认模块。
PHP安装
#cd /usr/ports/lang/php5
#make install clean
选择常用模块,把apache模块也选上
#cd /usr/ports/lang/php5-extensions
#make install clean
选择常用模块,记得添加mysql模块,以对mysql数据库的支持。
安装完成以后,配置httpd.conf文件,修改其中内容。
httpd.conf
Listen 80改为Listen IP:80
ServerAdmin you@example.com 改为常用联系邮箱 ServerAdmin 285602235@qq.com
ServerName server.com:80 改为网站域名 ServerName
查找Directory,在DirectoryIndex 行后面添加 index.php
之间添加
AddType application/x-httpd-php .php
添加注释: #CustomLog "/usr/log/httpd-access.log" combined
添加
MaxKeepAliveRequests 300
StartServers 50
MinSpareServers 50
MaxSpareServers 100
ServerLimit 8000
MaxClients 8000
MaxRequestsPerChild 100
忽略大小写 ,编辑 # vi /usr/local/etc/apache22/Includes/ignoreCase.conf
添加如下内容 CheckSpelling On
禁止列目录---编辑 # vi /usr/local/etc/apache22/httpd.conf
找到
添加 Options -Indexes
|
|
Apache的启动与关闭:
#/usr/local/etc/rc.d/apache22 start
#/usr/local/etc/rc.d/apache22 stop |
阅读(850) | 评论(0) | 转发(0) |