设为首页 收藏本站
查看: 886|回复: 0

[经验分享] 在Ubuntu 14.04 LTS系统中设置Apache虚拟主机

[复制链接]

尚未签到

发表于 2018-11-21 09:31:30 | 显示全部楼层 |阅读模式
  本文章出自:https://linux.cn/article-3164-1.html
  
  
  虚拟主机常用于在一个单独的IP地址上提供多个域名的网站服务。如果有人想在单个VPS的单个IP地址运行多个网站,这是非常有用的。
  在这个教程中,让我告诉你如何设置在Ubuntu 14.04 LTS的Apache网页服务器设置虚拟主机。请注意,这个教程只针对Ubuntu14.04的32位版本。
  我不保证它也可以工作在其它更低的Ubuntu版本或者Ubuntu衍生版本(虽然可能过程是类似的)。
方案
  在这个教程中,我会使用Ubuntu 14.04 32位 LTS,并搭建2个测试网站分别命名为“unixmen1.local” 和 “unixmen2.local”.我的测试机分别为192.168.1.250/24server.unixmen.local。你可以根据你的需要更改虚拟域名。
安装Apache网站服务器
  安装apache服务器之前,我们来更新一下我们的Ubuntu服务器:
sudo apt-get update  然后,用下面命令来安装apache网络服务器:
sudo apt-get install apache2  安装apache服务器之后,让我们通过这个URL http://你的服务器的IP地址/ 来测试网站服务器是否正常工作 DSC0000.png
  如你所见,apache服务器已经工作了。
设置虚拟主机
1.创建虚拟目录
  现在,让我们继续安装虚拟主机。正如我先前所述,我要新建2台虚拟主机分别命名为“unixmen1.local”和“unixmen2.local”.
  创建一个公用的文件夹来存放这两台虚拟主机的数据。
  首先,让我们为unixmen1.local这个站点创建一个目录:
sudo mkdir -p /var/www/unixmen1.local/public_html  接着,为for unixmen2.local站点创建一个目录:
sudo mkdir -p /var/www/unixmen2.local/public_html2. 设置所有者和权限
  上面目录现在只有root拥有权限。我们需要修改这2个目录的拥有权给普通用户,而不仅仅是root用户。
sudo chown -R $USER:$USER /var/www/unixmen1.local/public_html/sudo chown -R $USER:$USER /var/www/unixmen2.local/public_html/  “$USER”变量指向了当前的登录用户。
  设置读写权限给apache网页根目录(/var/www)及其子目录,这样每个人都可以从目录中读取文件。
sudo chmod -R 755 /var/www/  这样,我们就创建好了一些文件夹来保存网络相关数据并分配必要的权限和所属用户。
4. 为虚拟主机创建示例页
  现在,我们给网站增加示例页。第一步,让我们给虚拟主机unixmen1.local创建一个示例页。
  给unixmen1.local虚拟主机创建一个示例页,
sudo vi /var/www/unixmen1.local/public_html/index.html  添加以下内容:
  www.unixmen1.local   Welcome To Unixmen1.local website   保存并关闭文件。
  同样的,添加示例页到第二台虚拟主机。
sudo vi /var/www/unixmen2.local/public_html/index.html  添加以下内容:
  www.unixmen2.local   Welcome To Unixmen2.local website   保存并关闭文件。
5. 创建虚拟主机配置文件
  默认情况下,apache有一个默认的虚拟主机文件叫000-default.conf。我们将会复制000-default.conf文件内容到我们新的虚拟主机配置文件中。
sudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/unixmen1.local.confsudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/unixmen2.local.conf  确保虚拟主机配置文件末尾包含.conf扩展名。
  现在,修改unximen1.local.conf文件以符合需求。
sudo vi /etc/apache2/sites-available/unixmen1.local.conf  使相关的变化直接呈现在unixmen1站点中(译注:以“#”开头的注释行可以忽略。)。
        # The ServerName directive sets the request scheme, hostname and port that        # the server uses to identify itself. This is used when creating        # redirection URLs. In the context of virtual hosts, the ServerName        # specifies what hostname must appear in the request's Host: header to        # match this virtual host. For the default virtual host (this file) this        # value is not decisive as it is used as a last resort host regardless.        # However, you must set it for any further virtual host explicitly.        #ServerName www.example.com         ServerAdmin webmaster@unixmen1.local        ServerName unixmen1.local        ServerAlias www.unixmen1.local        DocumentRoot /var/www/unixmen1.local/public_html         # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,        # error, crit, alert, emerg.        # It is also possible to configure the loglevel for particular        # modules, e.g.        #LogLevel info ssl:warn         ErrorLog ${APACHE_LOG_DIR}/error.log        CustomLog ${APACHE_LOG_DIR}/access.log combined         # For most configuration files from conf-available/, which are        # enabled or disabled at a global level, it is possible to        # include a line for only one particular virtual host. For example the        # following line enables the CGI configuration for this host only        # after it has been globally disabled with "a2disconf".        #Include conf-available/serve-cgi-bin.conf  同理,修改第二台主机文件。
sudo vi /etc/apache2/sites-available/unixmen2.local.conf  使相关的修改在unixmen2 站点呈现出来。
        # The ServerName directive sets the request scheme, hostname and port that        # the server uses to identify itself. This is used when creating        # redirection URLs. In the context of virtual hosts, the ServerName        # specifies what hostname must appear in the request's Host: header to        # match this virtual host. For the default virtual host (this file) this        # value is not decisive as it is used as a last resort host regardless.        # However, you must set it for any further virtual host explicitly.        #ServerName www.example.com         ServerAdmin webmaster@unixmen2.local        ServerName unixmen2.local        ServerAlias www.unixmen2.local        DocumentRoot /var/www/unixmen2.local/public_html         # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,        # error, crit, alert, emerg.        # It is also possible to configure the loglevel for particular        # modules, e.g.        #LogLevel info ssl:warn         ErrorLog ${APACHE_LOG_DIR}/error.log        CustomLog ${APACHE_LOG_DIR}/access.log combined         # For most configuration files from conf-available/, which are        # enabled or disabled at a global level, it is possible to        # include a line for only one particular virtual host. For example the        # following line enables the CGI configuration for this host only        # after it has been globally disabled with "a2disconf".        #Include conf-available/serve-cgi-bin.conf  修改虚拟主机文件后,禁用默认的虚拟主机配置(000.default.conf),然后启用新的虚拟主机配置,如下所示。
sudo a2dissite 000-default.confsudo a2ensite unixmen1.local.confsudo a2ensite unixmen2.local.conf  最后,重启apache服务器。
sudo service apache2 restart  就是这样。现在,我们成功地配置了apach虚拟主机在我们的Ubuntu服务器上
测试虚拟主机
  编辑/etc/hosts文件,
sudo vi /etc/hosts  在文件末尾添加如下所示的虚拟域名。
192.168.1.250   unixmen1.local192.168.1.250   unixmen2.local  保存并关闭文件。
  打开你的浏览器并访问http://unixmen1.localhttp://unixmen2.local。你将会看到我们之前创建的示例页。
  Unixmen1.local 测试页:
DSC0001.png

  Unixmen2.local 测试页
DSC0002.png

  如果你想从你的远程系统访问这些站点,你需要在你的DNS服务器添加实际域名记录。不过,我没有真实的域名和DNS服务器,我只想通过我的本地系统测试,那么它刚好如我所愿地工作。
  Cheers!



运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-637611-1-1.html 上篇帖子: Apache2.4+Tomcat7集群搭建 下篇帖子: CentOS 6.5编译安装Apache2.4.12+MySQL5.6.21+PHP5.6.3
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表