Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> Linux下Apache配置虛擬主機+SSL

Linux下Apache配置虛擬主機+SSL

日期:2017/2/7 16:57:17      編輯:Linux教程
  1.下載httpd軟件,編譯Apache:

  。/configure ——enable-ssl(使之支持SSL)

  make

  make install

  2.httpd.conf中把#Include conf/exta……vhosts.conf前的#去掉

  在vhosts.conf中配置:

  DocumentRoot:usr/local/w1

  ServerName:www.shnu1.cn

  order deny,allow

  allow from all

  (添加訪問網頁的權限)

  3.windows的system32下的hosts文件中添加:

  10.10.134.26 www.w1.com

  10.10.134.26 www.w2.com

  4. 在w1和w2文件夾下分別創建w1.htm和w2.htm

  5. 重啟Apache:usr/local/apache2/bin/apachecl1 restart

  6.IE地址欄分別輸入w1.com和w2.com,測試w1.htm和w2.htm

  7.生成證書

  cd /usr/local/apache2/conf

  openssl req -new -x509 -nodes -out server.crt -keyout server.key

  httpd.conf中打開httpd-ssl.conf配置即可。
Copyright © Windows教程網 All Rights Reserved