首页 技术 正文
技术 2022年11月19日
0 收藏 428 点赞 4,112 浏览 2894 个字

Linux下Apache服务器配置

相关包:

httpd-2.2.3-29.e15.i386.rpm                 //主程序包httpd-devel-2.2.3-29.e15.i386.rpm        //开发程序包httpd-manual-2.2.3-29.e15.i386.rpm     //手册文档system-config-httpd-1.3.3.3-1.e15.noarch.rpm   //配置工具注:安装时会出现依赖包问题,可用YUM安装来解决   启用时需要配置防火墙来放行

 开机自动加载:

chkconfig –level 3 httpd on 

 配置实例:

例1:部门内搭建一台WEB服务器,采用的IP地址和端口为192.168.0.3:80,首页采用index.html文件。管理员E- mail地址为root@sales.com,网页的编码类型采用GB2312,所有网站资源都存放在/var/www/html目录下,并将 Apache的根目录设置为/etc/httpd目录。编辑主配置文件httpd.confvim /etc/httpd/conf/httpd.conf    //编辑主配置文件ServerRoot “/etc/httpd”             //设置Apache的主目录Timeout 120                             //设置请求超时Listen 80                                  //设置监听端口ServerAdmin root@sales.com          //设置管理员邮箱ServerName 192.168.0.3:80           //设置主机或IPDocumentRoot “/var/www/html”      //设置Apache文档目录DirectoryIndex index.html               //设置主页文件AddDefaultCharset GB2312            //设置网站编码编辑主页文件用作测试:cd /var/www/htmlecho “This is web test sample.”>>index.htmlchmod 705 index.html重新加载服务:service httpd restar

 例2:假设Apache服务器具有192.168.0.2和19.16.0.3两个地址,然后配置Apache,把多个网站绑定在不同的IP地址上,访问服务器上不同的IP地址,就可以看到不同的网站。

(基于IP)mkdir /var/www/ip1   /var/www/ip2           //创建两个主目录编辑httpd.conf文件:<Virtualhost 192.168.0.2>                      //设置虚拟主机的IP   DocumentRoot /var/www/ip1                //设置虚拟主机的主目录   DirectoryIndex index.html                    //设置主页文件   ServerAdmin root@sales.com               //设置管理员邮箱   ErrorLog  logs/ip1-error_log                 //设置错误日志的存放位置   CustomLog  logs/ip1-access_log common       //设置访问日志的存放位置</Virtualhost><Virtualhost 192.168.0.3>                      //设置相应的IP   DocumentRoot /var/www/ip2   DirectoryIndex index.html   ServerAdmin root@sales.com   ErrorLog  logs/ip2-error_log   CustomLog  logs/ip2-access_log common</Virtualhost>

 

(基于域名)mkdir /var/www/smile   /var/www/long         //创建两个主目录编辑httpd.conf文件:<Virtualhost 192.168.0.3>                         //设置虚拟主机的IP   DocumentRoot /var/www/smile                //设置虚拟主机的主目录   DirectoryIndex index.html                       //设置主页文件   ServerName www.smile.com                    //设置虚拟主机完全域名   ServerAdmin root@sales.com                  //设置管理员邮箱   ErrorLog  logs/smile-error_log                 //设置错误日志的存放位置   CustomLog  logs/smile-access_log common     //设置访问日志的存放位置</Virtualhost><Virtualhost 192.168.0.3>   DocumentRoot /var/www/long   DirectoryIndex index.html   ServerName www.smile.com                     //设置虚拟主机完全域名   ServerAdmin root@sales.com   ErrorLog  logs/long-error_log   CustomLog  logs/long-access_log common</Virtualhost>

 

(基于端口)mkdir /var/www/port8080   /var/www/port8090        //创建两个主目录编辑httpd.conf文件:Listen 8080Listen 8090<Virtualhost 192.168.0.3:8080>                            //设置相应的端口   DocumentRoot /var/www/port8080                     //设置虚拟主机的主目录   DirectoryIndex index.html                                  //设置主页文件   ServerAdmin root@sales.com                             //设置管理员邮箱   ErrorLog  logs/port8080-error_log                     //设置错误日志的存放位置   CustomLog  logs/port8080-access_log common  //设置访问日志的存放位置</Virtualhost><Virtualhost 192.168.0.3:8090>                          //设置相应的端口   DocumentRoot /var/www/port8090   DirectoryIndex index.html   ServerAdmin root@sales.com   ErrorLog  logs/port8090-error_log   CustomLog  logs/port8090-access_log common</Virtualhost>

 

相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:9,491
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,907
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,740
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,492
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:8,132
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:5,294