Apache搭建多個站點方法詳解

来源:https://www.cnblogs.com/jasonxu19900827/archive/2018/08/07/9438180.html
-Advertisement-
Play Games

Apache的虛擬主機是一種允許在同一臺機器上配置多個不同站點的web伺服器環境的,就是iis一樣可以創建多站點了,但是apache需要在編輯狀態操作,不能像windows iis直接點擊幾下就好了,下麵我來給各位介紹配置方法。 最平常的大概有3種方法。 第一種:單IP不同埠 第二種:多IP同埠 ...


Apache的虛擬主機是一種允許在同一臺機器上配置多個不同站點的web伺服器環境的,就是iis一樣可以創建多站點了,但是apache需要在編輯狀態操作,不能像windows iis直接點擊幾下就好了,下麵我來給各位介紹配置方法。

最平常的大概有3種方法。

第一種:單IP不同埠

第二種:多IP同埠(獨立IP的虛擬空間)

第三種:功能變數名稱綁定根目錄的方式(共用IP的虛擬空間)


Apache的核心配置文件名是”httpd.conf”,其所存放的路徑在Apache目錄下的conf文件夾下。修改它只需要使用記事本(建議使用其他編輯器,帶行數的那種,方便修改),生效的話只需要保存httpd.conf,重啟apache即可。

下麵多站點支持的話,修改httpd.conf的第187~264行(不同的httpd.conf可能有差異),也就是在ServerAdmin和ServerName那裡,大部分是註釋。下麵是主要修改的地方。

註意:如果是伺服器請備份httpd.conf後再修改文件。

 代碼如下 複製代碼

# 'Main' server configuration
#
# The directives in this section set up the values used by the 'main'
# server, which responds to any requests that aren't handled by a
# <VirtualHost> definition.  These values also provide defaults for
# any <VirtualHost> containers you may define later in the file.
#
# All of these directives may appear inside <VirtualHost> containers,
# in which case these default settings will be overridden for the
# virtual host being defined.
#

#
# ServerAdmin: Your address, where problems with the server should be
# e-mailed.  This address appears on some server-generated pages, such
# as error documents.  e.g. [email protected]
#
ServerAdmin [email protected]

#
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
#
# If your host doesn't have a registered DNS name, enter its IP address here.
#
ServerName www.example.com:80

#
# Deny access to the entirety of your server's filesystem. You must
# explicitly permit access to web content directories in other
# <Directory> blocks below.
#
<Directory />
    AllowOverride All
    Require all denied
</Directory>

#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#

#
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "g:/www"
<Directory "g:/www">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs/2.4/mod/core.html#options
    # for more information.
    #
    Options Indexes FollowSymLinks

    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   Options FileInfo AuthConfig Limit
    #
    AllowOverride All

    #
    # Controls who can get stuff from this server.
    #
    Require all granted
</Directory>

第一種一般是測試環境,畢竟加了埠,如何綁定功能變數名稱,訪問的時候功能變數名稱後面也需加埠。

例子分別通過80和8080訪問不同的根目錄。

大概在50幾行有個Listen 80,在下麵添加8080埠。

 代碼如下 複製代碼

Listen 80
Listen 8080<VirtualHost *:80>
    ServerAdmin [email protected]
    ServerName localhost:80
    DocumentRoot "g:/www1"
     <Directory "g:/www1">
     Options  Indexes FollowSymLinks
     AllowOverride All
     Require all granted
   </Directory>  
</VirtualHost>
<VirtualHost *:8080>
    ServerAdmin [email protected]
    ServerName localhost:8080 
    DocumentRoot "g:/www2"
   <Directory "g:/www2">
     Options Indexes FollowSymLinks
     AllowOverride All
     Require all granted
   </Directory>      
</VirtualHost>

第二種多IP同埠。

IP地址1:192.168.2.2

IP地址2:192.168.1.68

埠同是80埠。

 代碼如下 複製代碼

<VirtualHost 192.168.1.68:80>
    ServerAdmin [email protected]
    ServerName localhost:80
    DocumentRoot "g:/www1"
     <Directory "g:/www1">
     Options FollowSymLinks
     AllowOverride All
     Require all granted
   </Directory>  
</VirtualHost>
<VirtualHost 192.168.2.2:80>
    ServerAdmin [email protected]
    ServerName localhost:80
    DocumentRoot "g:/www2"
   <Directory "g:/www2">
     Options FollowSymLinks
     AllowOverride All
     Require all granted
   </Directory>      
</VirtualHost>

第三種同IP不同功能變數名稱和根目錄(功能變數名稱的話修改本地host演示)。

 代碼如下 複製代碼


<VirtualHost 192.168.2.2:80>
    ServerAdmin [email protected]
    ServerName www.111cn.net
    DocumentRoot "g:/www1"
     <Directory "g:/www1">
     Options FollowSymLinks
     AllowOverride All
     Require all granted
   </Directory>  
</VirtualHost>
<VirtualHost 192.168.2.2:80>
    ServerAdmin [email protected]
    ServerName www.111cn.net
    DocumentRoot "g:/www2"
   <Directory "g:/www2">
     Options FollowSymLinks
     AllowOverride All
     Require all granted
   </Directory>      
</VirtualHost>


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • WinForm載入多個自定義控制項時,會出現很嚴重的閃爍問題 解決辦法: 在調用自定義控制項的窗體內添加的: 在自定義控制項中添加的: ...
  • 辭職在家休息,買了台新電腦,裝個虛擬機,安裝visual studio, android studio, qt, everything, noptepad++,hbuilder,ditto,xx-net這些神器之後裝了vmware station 14 裝了ubuntu18.04 用的過程中發現不能 ...
  • 用戶許可權:drwxr-x . 8 root root 4096 8月 6 23:18 mnt 第一個root:所有者 即root用戶第二個root:所有者所在的組mnt:所有者創建的文件夾Rwx:root用戶對mnt具有讀、寫、執行的許可權R-x:root組內用戶對mnt具有讀、執行許可權 :其他用戶對 ...
  • 第1章 文件訪問過程詳解 1.1 文件訪問過程 第2章 許可權 2.1 對於文件rwx含義 r讀取文件內容 w修改文件內容 需要r許可權配合 只有w許可權的時候,強制保存退出會導致源文件內容丟失 x許可權表示是否能執行腳本 需要r許可權配合 2.2 對於目錄rwx含義 r 顯示目錄內容 需要x許可權配合 w 是 ...
  • 目錄 1 磁碟知識體繫結構... 4 1.1 第一層... 4 1.1.1 磁碟結構... 4 1.1.1.1 硬碟的分類... 5 1.1.1.2 磁碟介面的特點... 6 1.1.1.2.1 磁碟介面的外部特點... 6 1.1.1.2.2 磁碟介面的特點:... 6 1.1.1.2.3 磁碟如 ...
  • FQDN:(Fully Qualified Domain Name)全限定功能變數名稱:同時帶有主機名和功能變數名稱的名稱 其實就是標註一個主機的完整功能變數名稱。比如我的功能變數名稱為 ifrom.top 那麼它的郵件伺服器的主機名為 mail, 所以它的FQDN 為: mail.ifrom.top Linux 獲取主機名 的命 ...
  • 1、錯誤信息如下: SMTP -> ERROR: Failed to connect to server: Permission denied (13) 2、解決方法: https://gistpages.com/posts/phpmailer_smtp_error_failed_to_connec ...
  • 對於初學者而言,最簡單的是對晶元上的IO進行操作,我們學習ARM時候,第一個工程就是點亮LED,STM32F103ZET6通用輸入輸出介面(General-Purpose Inputs/Outputs),每個GPIO都可以由軟體配置成輸出(推免或開漏)、輸入(帶或不帶上拉或下拉)或復用的外設功能埠 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...