热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Apache配置虚拟主机之1基于名称(namebased)

基于name-based基于IP基于port结合一、基于名称(name-based)需要配置hosts,httpd.conf实验环境需求:2个域名:www1.example.com
  • 基于 name-based
  • 基于 IP
  • 基于 port
  • 结合

一、基于名称(name-based)

需要配置 hosts,httpd.conf

实验环境需求:

2个域名:www1.example.com www2.example.com

IP:192.168.136.140

端口:80

文件目录。/var/www目录下的结构如下。

[root@docker1 www]# tree
.
├── cgi-bin
├── html
├── logs
│   ├── www1
│   │   ├── access_log
│   │   └── error_log
│   └── www2
│   └── error_log
└── vhosts
    ├── www1
    │   └── index.html
    └── www2
        └── index.html

10 directories, 3 files

index.html的内容如下

[root@docker1 www]# cat /var/www/vhosts/www[12]/*

Holle world!
welcome to www1.example.com site.
Holle world!
welcome to www2.example.com site.

# 编辑本地DNS
vim /etc/hosts

# 添加多域名的记录
192.168.136.140 www1.example.com www2.example.com

# 添加 Name-Based 虚拟主机块配置
vim /etc/httpd/conf/httpd.conf
## Name-Based ####################################################
80>
    # This first-listed virtual host is also the default for *:80 第一个虚拟主机为默认主机
    ServerName www1.example.com
    ServerAlias example1.com
    DocumentRoot "/var/www/vhosts/www1"


80>
    ServerName www2.example.com
    #ServerAlias example2.com
    DocumentRoot "/var/www/vhosts/www2"

###################################################################

# 检查配置语法 *:80    is a NameVirtualHost 这里能正常解析,语法OK
[root@docker1 vhosts]# httpd -S
VirtualHost configuration:
*:80                   is a NameVirtualHost
         default server www1.example.com (/etc/httpd/conf/httpd.conf:82)
         port 80 namevhost www1.example.com (/etc/httpd/conf/httpd.conf:82)
                 alias example1.com
         port 80 namevhost www2.example.com (/etc/httpd/conf/httpd.conf:89)
ServerRoot: "/etc/httpd"
Main DocumentRoot: "/var/www/html"
Main ErrorLog: "/etc/httpd/logs/error_log"
Mutex proxy: using_defaults
Mutex authn-socache: using_defaults
Mutex default: dir="/run/httpd/" mechanism=default 
Mutex mpm-accept: using_defaults
Mutex authdigest-opaque: using_defaults
Mutex proxy-balancer-shm: using_defaults
Mutex rewrite-map: using_defaults
Mutex authdigest-client: using_defaults
PidFile: "/run/httpd/httpd.pid"
Define: DUMP_VHOSTS
Define: DUMP_RUN_CFG
User: name="apache" id=48
Group: name="apache" id=48
[root@docker1 vhosts]# 

# 重启 httpd
systemctl restart httpd.service
systemctl status httpd.service

[root@docker1 vhosts]# systemctl status httpd.service -l
● httpd.service - The Apache HTTP Server
   Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled)
   Active: active (running) since Wed 2016-12-14 15:56:58 CST; 26min ago
     Docs: man:httpd(8)
           man:apachectl(8)
  Process: 5951 ExecStop=/bin/kill -WINCH ${MAINPID} (code=exited, status=0/SUCCESS)
 Main PID: 5957 (httpd)
   Status: "Total requests: 9; Current requests/sec: 0; Current traffic:   0 B/sec"
   Memory: 4.1M
   CGroup: /system.slice/httpd.service
           ├─5957 /usr/sbin/httpd -DFOREGROUND
           ├─5958 /usr/sbin/httpd -DFOREGROUND
           ├─5959 /usr/sbin/httpd -DFOREGROUND
           ├─5960 /usr/sbin/httpd -DFOREGROUND
           ├─5962 /usr/sbin/httpd -DFOREGROUND
           ├─5975 /usr/sbin/httpd -DFOREGROUND
           ├─5978 /usr/sbin/httpd -DFOREGROUND
           ├─5979 /usr/sbin/httpd -DFOREGROUND
           ├─5980 /usr/sbin/httpd -DFOREGROUND
           ├─5981 /usr/sbin/httpd -DFOREGROUND
           └─6233 /usr/sbin/httpd -DFOREGROUND

Dec 14 15:56:58 docker1 systemd[1]: Starting The Apache HTTP Server...
Dec 14 15:56:58 docker1 httpd[5957]: AH00558: httpd: Could not reliably determine the servers fully qualified domain name, using 192.168.136.140. Set the ServerName directive globally to suppress this message
Dec 14 15:56:58 docker1 systemd[1]: Started The Apache HTTP Server.
[root@docker1 vhosts]# 

# 验证通过域名访问
[root@docker1 vhosts]# curl 127.0.0.1

Holle world!
welcome to www1.example.com site.

[root@docker1 vhosts]# curl www1.example.com

Holle world!
welcome to www1.example.com site.

[root@docker1 vhosts]# curl www2.example.com

Holle world!
welcome to www2.example.com site.

现在基于主机名的配置已完成。

附:http://httpd.apache.org/docs/2.4/vhosts/name-based.html

技术分享

Apache 配置虚拟主机之1--基于名称(name-based)


推荐阅读
  • 本文介绍了SIP(Session Initiation Protocol,会话发起协议)的基本概念、功能、消息格式及其实现机制。SIP是一种在IP网络上用于建立、管理和终止多媒体通信会话的应用层协议。 ... [详细]
  • 本文将从基础概念入手,详细探讨SpringMVC框架中DispatcherServlet如何通过HandlerMapping进行请求分发,以及其背后的源码实现细节。 ... [详细]
  • 本文详细介绍了如何在Oracle VM VirtualBox中实现主机与虚拟机之间的数据交换,包括安装Guest Additions增强功能,以及如何利用这些功能进行文件传输、屏幕调整等操作。 ... [详细]
  • 二维码的实现与应用
    本文介绍了二维码的基本概念、分类及其优缺点,并详细描述了如何使用Java编程语言结合第三方库(如ZXing和qrcode.jar)来实现二维码的生成与解析。 ... [详细]
  • 本文详细介绍了JQuery Mobile框架中特有的事件和方法,帮助开发者更好地理解和应用这些特性,提升移动Web开发的效率。 ... [详细]
  • 本文介绍了如何通过C#语言调用动态链接库(DLL)中的函数来实现IC卡的基本操作,包括初始化设备、设置密码模式、获取设备状态等,并详细展示了将TextBox中的数据写入IC卡的具体实现方法。 ... [详细]
  • Web动态服务器Python基本实现
    Web动态服务器Python基本实现 ... [详细]
  • 项目风险管理策略与实践
    本文探讨了项目风险管理的关键环节,包括风险管理规划、风险识别、风险分析(定性和定量)、风险应对策略规划及风险控制。旨在通过系统的方法提升项目成功率,减少不确定因素对项目的影响。 ... [详细]
  • Windows操作系统提供了Encrypting File System (EFS)作为内置的数据加密工具,特别适用于对NTFS分区上的文件和文件夹进行加密处理。本文将详细介绍如何使用EFS加密文件夹,以及加密过程中的注意事项。 ... [详细]
  • 在1995年,Simon Plouffe 发现了一种特殊的求和方法来表示某些常数。两年后,Bailey 和 Borwein 在他们的论文中发表了这一发现,这种方法被命名为 Bailey-Borwein-Plouffe (BBP) 公式。该问题要求计算圆周率 π 的第 n 个十六进制数字。 ... [详细]
  • 如何在Django框架中实现对象关系映射(ORM)
    本文介绍了Django框架中对象关系映射(ORM)的实现方式,通过ORM,开发者可以通过定义模型类来间接操作数据库表,从而简化数据库操作流程,提高开发效率。 ... [详细]
  • publicclassBindActionextendsActionSupport{privateStringproString;privateStringcitString; ... [详细]
  • 本文详细介绍了iOS应用的生命周期,包括各个状态及其转换过程中的关键方法调用。 ... [详细]
  • 从CodeIgniter中提取图像处理组件
    本指南旨在帮助开发者在未使用CodeIgniter框架的情况下,如何独立使用其强大的图像处理功能,包括图像尺寸调整、创建缩略图、裁剪、旋转及添加水印等。 ... [详细]
  • 探索AI智能机器人自动盈利系统的构建
    用户可通过支付198元押金及30元设备维护费租赁AI智能机器人,推荐他人加入可获得相应佣金。随着推荐人数的增加,用户将逐步解锁更高版本,享受更多收益。 ... [详细]
author-avatar
83984246_42dbe6
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有