国产精品国产三级国产试看,香蕉人精品视频多人免费永久视频,宅男噜噜噜66一区二区,天天插天天射,女人体(1963)菠萝蜜视频,97在线视频人妻无码一区,精品久久久久精品色婷婷综合

網(wǎng)站首頁(yè)
手機(jī)版

ubuntu 14.04設(shè)置Apache虛擬主機(jī)的方法

更新時(shí)間:2023-11-07 00:14:53作者:佚名

ubuntu 14.04設(shè)置Apache虛擬主機(jī)的方法

在這個(gè)教程中,我會(huì)使用Ubuntu 14.04 32位 LTS,并搭建2個(gè)測(cè)試網(wǎng)站分別命名為“unixmen1.local” 和 “unixmen2.local”.我的測(cè)試機(jī)分別為192.168.1.250/24和server.unixmen.local。你可以根據(jù)你的需要更改虛擬域名。

安裝Apache網(wǎng)站服務(wù)器

安裝apache服務(wù)器之前,我們來(lái)更新一下我們的Ubuntu服務(wù)器:
sudo apt-get update然后,用下面命令來(lái)安裝apache網(wǎng)絡(luò)服務(wù)器:
sudo apt-get install apache2安裝apache服務(wù)器之后,讓我們通過這個(gè)URL http://你的服務(wù)器的IP地址/ 來(lái)測(cè)試網(wǎng)站服務(wù)器是否正常工作

ubuntu 14.04設(shè)置Apache虛擬主機(jī)的方法

如你所見,apache服務(wù)器已經(jīng)工作了。

設(shè)置虛擬主機(jī)

1.創(chuàng)建虛擬目錄

現(xiàn)在,讓我們繼續(xù)安裝虛擬主機(jī)。正如我先前所述,我要新建2臺(tái)虛擬主機(jī)分別命名為“unixmen1.local”和“unixmen2.local”.

創(chuàng)建一個(gè)公用的文件夾來(lái)存放這兩臺(tái)虛擬主機(jī)的數(shù)據(jù)。

首先,讓我們?yōu)閡nixmen1.local這個(gè)站點(diǎn)創(chuàng)建一個(gè)目錄:

sudo mkdir -p /var/www/unixmen1.local/public_html接著,為for unixmen2.local站點(diǎn)創(chuàng)建一個(gè)目錄:
sudo mkdir -p /var/www/unixmen2.local/public_html

2. 設(shè)置所有者和權(quán)限

上面目錄現(xiàn)在只有root擁有權(quán)限。我們需要修改這2個(gè)目錄的擁有權(quán)給普通用戶,而不僅僅是root用戶。

sudo chown -R $USER:$USER /var/www/unixmen1.local/public_html/
sudo chown -R $USER:$USER /var/www/unixmen2.local/public_html/

“$USER”變量指向了當(dāng)前的登錄用戶。

設(shè)置讀寫權(quán)限給apache網(wǎng)頁(yè)根目錄(/var/www)及其子目錄,這樣每個(gè)人都可以從目錄中讀取文件。

sudo chmod -R 755 /var/www/這樣,我們就創(chuàng)建好了一些文件夾來(lái)保存網(wǎng)絡(luò)相關(guān)數(shù)據(jù)并分配必要的權(quán)限和所屬用戶。

4. 為虛擬主機(jī)創(chuàng)建示例頁(yè)

現(xiàn)在,我們給網(wǎng)站增加示例頁(yè)。第一步,讓我們給虛擬主機(jī)unixmen1.local創(chuàng)建一個(gè)示例頁(yè)。

給unixmen1.local虛擬主機(jī)創(chuàng)建一個(gè)示例頁(yè),

sudo vi /var/www/unixmen1.local/public_html/index.html添加以下內(nèi)容:

XML/HTML Code復(fù)制內(nèi)容到剪貼板

  1. <html>
  2. <head>
  3. <title>www.unixmen1.local</title>
  4. </head>
  5. <body>
  6. <h1>Welcome To Unixmen1.local website</h1>
  7. </body>
  8. </html>

保存并關(guān)閉文件。
同樣的,添加示例頁(yè)到第二臺(tái)虛擬主機(jī)。
sudo vi /var/www/unixmen2.local/public_html/index.html添加以下內(nèi)容:

復(fù)制代碼

代碼如下:

<html>
<head>
<title>www.unixmen2.local</title>
</head>
<body>
<h1>Welcome To Unixmen2.local website</h1>
</body>
</html>

保存并關(guān)閉文件。

5. 創(chuàng)建虛擬主機(jī)配置文件

默認(rèn)情況下,apache有一個(gè)默認(rèn)的虛擬主機(jī)文件叫000-default.conf。我們將會(huì)復(fù)制000-default.conf文件內(nèi)容到我們新的虛擬主機(jī)配置文件中。
sudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/unixmen1.local.conf
sudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/unixmen2.local.conf確保虛擬主機(jī)配置文件末尾包含.conf擴(kuò)展名。
現(xiàn)在,修改unximen1.local.conf文件以符合需求。

sudo vi /etc/apache2/sites-available/unixmen1.local.conf使相關(guān)的變化直接呈現(xiàn)在unixmen1站點(diǎn)中(譯注:以“#”開頭的注釋行可以忽略。)。

復(fù)制代碼

代碼如下:

<VirtualHost *:80>
# 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 comb
# 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
</VirtualHost>

修改虛擬主機(jī)文件后,禁用默認(rèn)的虛擬主機(jī)配置(000.default.conf),然后啟用新的虛擬主機(jī)配置,如下所示。

復(fù)制代碼

代碼如下:

sudo a2dissite 000-default.conf
sudo a2ensite unixmen1.local.conf
sudo a2ensite unixmen2.local.conf

最后,重啟apache服務(wù)器。
sudo service apache2 restart

就是這樣。現(xiàn)在,我們成功地配置了apach虛擬主機(jī)在我們的Ubuntu服務(wù)器上
測(cè)試虛擬主機(jī)
編輯/tc/hosts文件,
sudo vi /etc/hosts在文件末尾添加如下所示的虛擬域名。
192.168.1.250 unixmen1.local192.168.1.250 unixmen2.local保存并關(guān)閉文件。
打開你的瀏覽器并訪問http://unixmen1.local 或 http://unixmen2.local。你將會(huì)看到我們之前創(chuàng)建的示例頁(yè)。

Unixmen1.local 測(cè)試頁(yè):

ubuntu 14.04設(shè)置Apache虛擬主機(jī)的方法

Unixmen2.local 測(cè)試頁(yè)

ubuntu 14.04設(shè)置Apache虛擬主機(jī)的方法

如果你想從你的遠(yuǎn)程系統(tǒng)訪問這些站點(diǎn),你需要在你的DNS服務(wù)器添加實(shí)際域名記錄。不過,我沒有真實(shí)的域名和DNS服務(wù)器,我只想通過我的本地系統(tǒng)測(cè)試,那么它剛好如我所愿地工作。

本文標(biāo)簽: 虛擬主機(jī)  服務(wù)器  文件  

為您推薦

ubuntu 14.04設(shè)置Apache虛擬主機(jī)的方法

ubuntu 14.04設(shè)置Apache虛擬主機(jī)的方法 在這個(gè)教程中,我會(huì)使用Ubuntu 14.04 32位 LTS,并搭建2個(gè)測(cè)試網(wǎng)站分別命名為“unixm

2023-11-07 00:14

Ubuntu系統(tǒng)安裝搜狗拼音輸入法教程(ubuntu怎么安裝搜狗拼音)

Ubuntu系統(tǒng)安裝搜狗拼音輸入法教程 Ubuntu默認(rèn)輸入法是ibus輸入法,其實(shí)用著也可以了,但是說句實(shí)話在某些情況下真的不怎么智能。習(xí)慣了搜狗所以,查閱資

2023-11-07 00:13

Ubuntu設(shè)置命令行界面和圖形界面切換方法

Ubuntu設(shè)置命令行界面和圖形界面切換方法 代碼如下: sudo gedit /etc/default/grub 引用: 代碼如下: GRUB_CMDLINE

2023-11-07 00:13

ubuntu系統(tǒng)怎么玩unity3d游戲?(unity的游戲怎么玩)

ubuntu系統(tǒng)怎么玩unity3d游戲? 1、打開自己的unity3d游戲項(xiàng)目,F(xiàn)ile--BuildSettings... 2、文件導(dǎo)出為32位或者64位的

2023-11-07 00:13

Ubuntu 15.04系統(tǒng)怎么清理的系統(tǒng)垃圾文件?

Ubuntu 15.04系統(tǒng)怎么清理的系統(tǒng)垃圾文件? Linux 系統(tǒng)文件管理相對(duì)來(lái)說比較高效,產(chǎn)生的所謂“垃圾”也比較少。但是,經(jīng)過一段時(shí)間的運(yùn)行和升級(jí)之后,

2023-11-07 00:12

Windows系統(tǒng)怎么添加Ubuntu啟動(dòng)項(xiàng)? win10添加ubuntu啟動(dòng)項(xiàng)

Windows系統(tǒng)怎么添加Ubuntu啟動(dòng)項(xiàng)? Windows系統(tǒng)怎么添加Ubuntu啟動(dòng)項(xiàng)? 1、下載grub4dos軟件包,提取文件grldr 和grldr

2023-11-07 00:12