How To Set Up Apache Virtual Hosts on CentOS 6

About Virtual Hosts

虚拟主机,用于在一个单一IP地址上,运行多个域。这对那些想在一个VPS上,运行多个网站的人,尤其有用。基于用户访问的不同网站,给访问者显示不同的信息。没有限制能VPS中,添加的虚拟主机的个数。

Set Up

教程中的这些步骤,需要你有root权限。你可以查看Initial Server Setup
,来学习如何设置初始化服务器。这里使用www.作为root的名字,你可以使用你想用的。

另外,你需要在你的VPS上安装并运行apache。

如果没有安装,你可以通过以下命令安装

sudo yum install httpd

Step One-Create a New Directory

第一步,是创建一个保存新虚拟主机的路径

该路径,会添加到你Apache virtual configuration的Document
Root文件中。通过在命令里加一个 –p ,命令会自动新路径的所有不存在的父目录。

sudo mkdir -p /var/www/example.com/public_html

你会需要设计一个实际的DNS,或一个IP地址,来访问呢domain,用以测试该虚拟主机是否工作。在该教程中,我们使用exemple.com作为你的域名的占位符。

然而,如果你要使用一个不能抵达的域名,用来测试,你需要查看第六步,让域名如何在你本地计算机上工作。

Step Two-Grant Permissions

我们需要将路径的所有者,grant为该用户,而不是在root系统中运行。

sudo chown -R www:www /var/www/example.com/public_html

另外,很重要的一点是,要确保任何人都能read我们的新文件。

sudo chmod 755 /var/www

现在,你已经设置好了所有权限。

Step Three-Create the Page

你需要在我们配置好的路径里,创建一个叫做index.html的新文件。

sudo vi /var/www/example.com/public_html/index.html

我们要添加一些文本到该文件,这些文本会在IP重定向到虚拟主机时看到。


<html>
<head>
<title>www.example.com</title>
</head>
<body>
<h1>Success: You Have Set Up a Virtual Host</h1>
</body>
</html>

保存,并退出。

Step Four-Turn on Virtual Hosts

下一步是进入apache configuration文件中。

sudo vi /etc/httpd/conf/httpd.conf

这里有要查找一些行,确保你看到的信息和下面的信息匹配。

#Listen 12.34.56.78:80
Listen 80

滚动到文档的底部,找到叫做Virtual Hosts的章节。


NameVirtualHost *:80
#
# NOTE: NameVirtualHost cannot be used without a port specifier
# (e.g. :80) if mod_ssl is being used, due to the nature of the
# SSL protocol.
#

#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for requests without a known
# server name.
#
<VirtualHost *:80>
ServerAdmin webmaster@example.com
DocumentRoot /var/www/example.com/public_html
ServerName www.example.com
ServerAlias example.com
ErrorLog /var/www/example.com/error.log
CustomLog /var/www/example.com/requests.log
</VirtualHost>

这里非常重要的行,是NameVirtualHost,Virtual Host,Document Root,Server
Name。

-取消对NameVirtualHost的备注(remove the number sign
‘#’),而不改变任何其他设置。星号意味着任何通过80端口的IP地址,都会成为一个虚拟主机。在你的系统中,可能只有一个IP地址,不需要关注。然而,如果你乐意,你可以使用你的IP地址替换星号。

-你可以保留<VirtualHost
*:80>之前的备注。从<VirtualHost>开始,取消注释。

-保持<VirtualHost
*:80>,它和NameVirtualHost章节的信息要匹配。如果你用你的IP替换了之前的星号,在这里,你也需要这么做。

-Document Root是关键!这里填入我们在第一步中创建的路径表达式。如果document
root是错误的或不存在的,你就不能设置该虚拟主机。

-Server Name是另一个重点信息,包含虚拟主机的域名(例如,www.example.com)。确保你你输入完全的域名。我们会在下一行写入任何该域的可能。

-ServerAlias是配置文件中的新行,默认它不在这儿。添加它,将允许你列出一些域名的变体,如没有www的
example.com。

在本节中,剩余的行不需要设置给虚拟主机。然而,知道他们是做什么,依然会有帮助。

-Server admin 请求网站所有者的email。

-Error Logs和Custom Logs保持跟踪任何服务器的异常。error
log包含服务器运行期间引起的一场,custom log跟踪服务器的请求。你可以设置一个自定义的位置,为这些处理。

-确保<VirtualHost>取消备注;然后保存并退出。

Step Five-Restart Appache

我们已经对配置做了一些修改。然而,不重启Apache,他们不会生效。

首先关闭所有apache 进程:

sudo apachectl -k stop

然后,再次启动apache

sudo /etc/init.d/httpd start

你可能会看到下面的错误:

Could not reliably determine the server‘s fully qualified domain name,
 using 127.0.0.1 for ServerName

该信息仅仅是一个warning,你依然能访问你的虚拟主机。

Optional Step Six-Setting Up the Local
Hosts

如果你已经将你的域名制定你的VPS的IP地址,你可以跳过该步骤-你不需要设置本地主机。你的虚拟主机已经可以工作。然而,如果你的新虚拟主机没有连接到一个实际的域名,你需要设置在你的电脑端设置本地主机。

确保你在你的电脑端,而不是VPS上。

要进行该步,你需要知道你计算机的管理员密码。另外,你需要使用一个实际的域名来测试虚拟主机。

如果你在Mac或Linux,访问电脑的root user(su),打开你的hosts文件

nano /etc/hosts

如果你在Windows电脑,。。。。

添加下面的信息到该文件。定位到浏览器,example.com会给你相应IP的所有虚拟主机细节。


# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting. Do not change this entry.
##
127.0.0.1 localhost

#Virtual Hosts
12.34.56.789 www.example.com

然而,这可能不是一个好主意。

Step Seven-RESULTS: See Your Virtual Host in
Action

一旦你完成了虚拟主机的设置,你可以在线看到它。输入你IP地址到浏览器。

它会显示上面咱们添加index.html的信息。

Adding More Virtual Hosts

要创建额外的虚拟主机,你可以重复上面的步骤,每次设置新document
root的时候,都要小心,使用相应的新域名。然后,仅仅拷贝粘贴新虚拟主机的信息,到Apache Config文件,看起来像下面这样:


<VirtualHost *:80>
ServerAdmin webmaster@example.com
DocumentRoot /var/www/example.com/public_html
ServerName www.example.com
ServerAlias example.com
ErrorLog /etc/var/www/example.com/error.log
CustomLog /var/www/example.com/requests.log
</VirtualHost>
<VirtualHost *:80>
ServerAdmin webmaster@example.org
DocumentRoot /var/www/example.org/public_html
ServerName www.example.org
ServerAlias example.org
ErrorLog /var/www/example.org/error.log
CustomLog /var/www/example.orgrequests.log
</VirtualHost>

See More

一旦你设置好虚拟主机,你可以执行Create a SSL Certificate for your site or
Install an FTP server

时间: 2024-10-26 10:07:42

How To Set Up Apache Virtual Hosts on CentOS 6的相关文章

Configure Apache Virtual Hosts - CentOS 7

Difficulty: 2Time: 15 minutes Want to host websites on your server? Using Apache? Great. This article will show you how to do exactly that using Apache’s “virtual hosts.” In Apache, you can use virtual hosts to direct http traffic for a given domain

Apache Virtual Hosting IP Based and Name Based Virtual Hosts

As we all are aware that Apache is a very powerful, highly flexible and configurable Web server for Nix OS. Here in this tutorial, we are going to discuss one more feature of Apachewhich allows us to host more than one website on a single Linux machi

Apache配置基于端口号的虚拟主机 Apache virtual host configuration is based on the port

有可能只有一个ip出口,但却有多个项目,那么就需要基于端口号架设虚拟主机. Step 1: 检查是否开启 httpd-vhosts.conf apache/conf/httpd.conf文件 # Virtual hosts Include conf/extra/httpd-vhosts.conf 如果没有开启,必须在httpd.conf文件中设置:如果开启,则可以在apache/conf/extra/httpd-vhosts.conf文件中设置,当然也还是可以再httpd.conf文件中进行设置

Apache配置基于IP的虚拟主机 Apache virtual host configuration is based on the IP

Step 1: 检查是否开启 httpd-vhosts.conf apache/conf/httpd.conf文件 # Virtual hosts Include conf/extra/httpd-vhosts.conf 如果没有开启,必须在httpd.conf文件中设置:如果开启,则可以在apache/conf/extra/httpd-vhosts.conf文件中设置,当然也还是可以再httpd.conf文件中进行设置,同样有效. Step 2: httpd.conf文件 DocumentRo

Windows10下配置虚拟机Virtual Box安装CentOS(Linux)详细教程

引言:在日常生活中,我们最常用PC操作系统的就是Windows和MacOS,但是有时我们在学习和工作中也要接触Linux操作系统,或者是在这个系统下工作,或者仅仅是学习一些Linux的基础知识,但如果我们为此特意去为我们的电脑安装Linux系统,而我们习惯的windows或者macOS可能会被覆盖掉(当然也是可以实现双系统并存的),而使我们原来的系统丢失或者无法正常的使用,所以就有了虚拟机这个东西,它可以使我们在现有的系统上模拟.隔离出来一个新的完整计算机系统,使我们既可以体验新的操作系统,也可

How To Set Up Nginx Server Blocks (Virtual Hosts) on Ubuntu

sudo apt-get update sudo apt-get install nginxsudo mkdir -p /var/www/example.com/html sudo chown -R $USER:$USER /var/www/example.com/html sudo chmod -R 755 /var/www sudo cp /etc/nginx/sites-available/default /etc/nginx/sites-available/example.com sud

Virtual Hosts

虚拟主机就是一组资源,就是资源的一个逻辑分组 虚拟主机提供对资源的逻辑分组和隔离 虚拟主机有一个名字.当客户端连接到RabbitMQ的时候,客户端指定一个虚拟主机的名字来连接到它.如果认证成功,并且用户有权限访问该虚拟主机,则连接建立成功.连接到虚拟主机以后,可以操作这个虚拟主机下的exchanges, queues, bindings等. 虚拟主机的限制有两个:最大连接数和最大队列数. 参考  http://www.rabbitmq.com/vhosts.html 原文地址:https://w

virtual Box在Centos 7上的安装

1.首先,我们需要在oracle官网下载virtual Box的centos7版本: 下载地址为:http://download.virtualbox.org/virtualbox/5.0.12/VirtualBox-5.0-5.0.12_104815_el7-1.x86_64.rpm 2.使用rpm安装virtualbox: rpm -ivh VirtualBox-5.0-5.0.12_104815_el7-1.x86_64.rpm 出现错误,显示以下信息: 警告:VirtualBox-5.0

安装Apache Thrift网关到CentOS 1

Step1 yum install automake libtool flex bison pkgconfig gcc-c++ Step 2 curl ftp://ftp.pbone.net/mirror/ftp5.gwdg.de/pub/opensuse/repositories/home:/monkeyiq:/centos6updates/CentOS_CentOS-6/noarch/autoconf-2.69-12.2.noarch.rpm > autoconf-2.69-12.2.noa