91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ubuntu 14.04中怎么設置Apache虛擬主機

發布時間:2021-07-22 18:06:56 來源:億速云 閱讀:153 作者:Leah 欄目:系統運維

本篇文章給大家分享的是有關ubuntu 14.04中怎么設置Apache虛擬主機,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。



安裝Apache網站服務器

安裝apache服務器之前,我們來更新一下我們的Ubuntu服務器:
sudo apt-get update然后,用下面命令來安裝apache網絡服務器:
sudo apt-get install apache2安裝apache服務器之后,讓我們通過這個URL http://你的服務器的IP地址/ 來測試網站服務器是否正常工作

ubuntu 14.04中怎么設置Apache虛擬主機


如你所見,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_html

2. 設置所有者和權限

上面目錄現在只有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添加以下內容:

XML/HTML Code復制內容到剪貼板

  1. <html>    

  2.   <head>    

  3.     <title>www.unixmen1.local</title>    

  4.   </head>    

  5. <body>    

  6.     <h2>Welcome To Unixmen1.local website</h2>    

  7. </body>  

  8. </html>  

保存并關閉文件。
同樣的,添加示例頁到第二臺虛擬主機。
sudo vi /var/www/unixmen2.local/public_html/index.html添加以下內容:

代碼如下:


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

保存并關閉文件。

5. 創建虛擬主機配置文件

默認情況下,apache有一個默認的虛擬主機文件叫000-default.conf。我們將會復制000-default.conf文件內容到我們新的虛擬主機配置文件中。
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確保虛擬主機配置文件末尾包含.conf擴展名。
現在,修改unximen1.local.conf文件以符合需求。

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

代碼如下:


<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, &hellip;, 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>

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

代碼如下:


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

最后,重啟apache服務器。
sudo service apache2 restart

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

Unixmen1.local 測試頁:

ubuntu 14.04中怎么設置Apache虛擬主機

以上就是ubuntu 14.04中怎么設置Apache虛擬主機,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

大竹县| 留坝县| 汤阴县| 云安县| 惠来县| 武隆县| 辽源市| 曲阳县| 大新县| 鄂伦春自治旗| 秀山| 临清市| 新和县| 丹江口市| 岚皋县| 大城县| 郁南县| 卓尼县| 阿拉善右旗| 武山县| 山东| 万安县| 北海市| 息烽县| 应城市| 葫芦岛市| 赤峰市| 富蕴县| 中西区| 武鸣县| 茌平县| 阿拉善右旗| 报价| 米泉市| 中方县| 沛县| 黑龙江省| 独山县| 介休市| 临桂县| 宣威市|