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

溫馨提示×

溫馨提示×

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

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

3-unit9 apache

發布時間:2020-09-24 06:07:52 來源:網絡 閱讀:343 作者:cuijb0221 欄目:建站服務器

######Apache web服務############


本單元涵蓋的主題:

* Apache基本配置

* 虛擬主機配置

* HTTPS配置

* 集成動態內容


########Apache基本配置########

Apache主配置文件:/etc/httpd/conf/httpd.conf

ServerRoot "/etc/httpd"         用于指定Apache的運行目錄
Listen 80             監聽端口
User apache             運行apache程序的用戶和組
Group apache
ServerAdmin root@localhost         管理員郵箱
DocumentRoot "/var/www/html"         網頁文件的存放目錄
<Directory "/var/www/html"> <Directory>        語句塊自定義目錄權限
Require all granted
</Directory>
ErrorLog "logs/error_log"         錯誤日志存放位置
AddDefaultCharset UTF-8         默認支持的語言
IncludeOptional conf.d/*.conf         加載其它配置文件
DirectoryIndex index.html     默認主頁名稱



########apache的安裝#######
yum install httpd -y         安裝apache軟件包

systemctl start httpd       啟動apache服務

systemctl stop firewalld
systemctl enable httpd
systemctl disable firewalld

netstat  -antlpe | grep httpd                ##查看監聽端口


#####apache的基本配置#######
1.apache的默認發布文件
index.html

2.apache的配置文件
/etc/httpd/conf/httpd.conf
/etc/httpd/conf.d/*.conf

3.apache的默認發布目錄
/var/www/html

3-unit9 apache

默認發布文件
3-unit9 apache
3-unit9 apache

3-unit9 apache

4.apache的默認端口
80
3-unit9 apache
######修改apache的基本配置########
1.修改默認發布文件

3-unit9 apache
vim /etc/httpd/conf/httpd.conf

164    DirectoryIndex westos.html  index.html       ##
默認主頁名稱


systemctl restart httpd

3-unit9 apache
2.修改默認發布目錄3-unit9 apache
    ###當selinux是disable狀態時
vim /etc/httpd/conf/httpd.conf

120 DocumentRoot "/westos/www/html"         ##網頁文件的存放目錄
121 <Directory "/westos/www/html">        ##語句塊自定義目錄權限
122      Require all granted
123 </Directory>


systemctl restart httpd

3-unit9 apache
 
      

##當selinux是Enforcing狀態時

semanage fcontext -a -t httpd_sys_content_t '/westos(/.*)?'        ##配置安全上下文
restorecon -RvvF /westos
測試:172.25.254.162

3-unit9 apache

3.apache的訪問控制
vim /etc/httpd/conf/httpd.conf

<Directory "/var/www/html/admin">   ##允許所有人訪問admin目錄但拒絕62主機
    Order Allow,Deny
    Allow from All
    Deny from 172.25.254.62
</Directory>


3-unit9 apache

<Directory "/var/www/html/admin">   ##只允許62主機訪問admin目錄
    Order Deny,Allow      
    Allow from 172.25.254.62
    Deny from All
</Directory>


systemctl restart httpd

3-unit9 apache
測試:172.25.254.162/admin/
3-unit9 apache

3-unit9 apache


#####設定用戶的訪問########

#####用兩個賬戶創建Apache密碼文件

htpasswd -cm /etc/httpd/accessuser admin   ##建立用戶認證文件并建立用戶admin設置密碼123
htpasswd -m /etc/httpd/accessuser cui      ##建立認證用戶cui,密碼123

3-unit9 apache


vim /etc/httpd/conf/httpd.conf               ##配置基于用戶的身份驗證

<Directory "/var/www/html/admin">
        AuthUserFile/etc/httpd/accessuser    ##用戶認證文件
        AuthName "Please input yourname and password !!"  ##用戶認證提示信息
        AuthType basic    ##認證類型
        Require valid-user    ##認證用戶,認證文件中所有的用戶都可以通過
      或  [Require user admin]  ##只允許認證文件中的admin用戶訪問,二寫一
</Directory>


systemctl restart httpd           ##重啟apache服務,并使用Web瀏覽器測試訪問,在彈出的對話框中輸入上述用戶名和密碼。


測試:172.25.254.162/admin/

3-unit9 apache


3-unit9 apache
3-unit9 apache


4.apache 語言支持
html語言支持
php語言支持
yum install php -y        ##安裝php服務

vim /var/www/html/index.php       ##寫php測試

<?php
        phpinfo()
?>


systemctl restart httpd
測試:172.25.254.162

3-unit9 apache**cgi語言支持
mkdir /var/www/html/cgi
vim /var/www/html/cgi/index.cgi   ##默認發布文件主頁內容

#!/usr/bin/perl
print "Content-type: text/html\n\n";
print `date`;



3-unit9 apache
vim /etc/httpd/conf/httpd.conf

<Directory "/var/www/html/cgi">        ##網頁文件目錄
        Options +ExecCGI
        AddHandler cgi-script .cgi
</Directory>
 DirectoryIndex index.cgiindex.html    ##默認訪問主頁名稱


systemctl restart httpd
chmod +x index.cgi        ##給文件添加執行權限
測試:
172.25.254.136/cgi/
3-unit9 apache

#####Apache的虛擬主機#####

1.定義
可以讓我們的一臺apache服務器在被訪問不同域名的時候顯示不同的主頁

虛擬主機允許您從一個httpd服務器同時為多個網站提供服務。在本節中,我們將了解基于名稱的虛擬主機其中多個主機名都指向同一個IP地址,但是Web服務器根據用于到達站點的主機名提供具有不同內容的不同網站。



2.建立測試頁

##########建立網頁發布目錄#######

mkdir /var/www/virtual/money.westos.com/html -p
mkdir /var/www/virtual/news.westos.com/html -p
echo "<h2>news.westos.coms's page</h2>">/var/www/virtual/news.westos.com/html/index.html
echo "<h2>money.westos.coms's page</h2>">/var/www/virtual/money.westos.com/html/index.html

3.配置
##創建虛擬主機配置文件

vim /etc/httpd/conf.d/default.conf      ##未指定域名的訪問都訪問default     

###這是定義虛擬主機的塊

<Virtualhost   _default_:80>                 ##虛擬主機開啟的端口             
    DocumentRoot"/var/www/html"        ##虛擬主機默認發布目錄    
    CustomLog "logs/default.log"combined    ##虛擬主機日志
</Virtualhost>



vim /etc/httpd/conf.d/news.conf      ##指定域名news.westos.com的訪問到指定的默認發布目錄中

<Virtualhost  *:80>
    ServerName"news.westos.com"            ##指定服務器名稱
    DocumentRoot"/var/www/virtual/news.westos.com/html"      ##默認發布目錄的訪問授權
      CustomLog "logs/news.log"combined          ##虛擬主機日志
</Virtualhost>
<Directory "/var/www/virtual/news.westos.com/html">      ##語句塊自定義目錄權限
        Require all granted
</Directory>


vim /etc/httpd/conf.d/money.conf

<Virtualhost  *:80>
    ServerName"money.westos.com"                     
    DocumentRoot"/var/www/virtual/money.westos.com/html"
    CustomLog "logs/money.log"combined
</Virtualhost>
<Directory "/var/www/virtual/money.westos.com/html">
    Require all granted
</Directory>


systemctl start httpd        ##啟動apache服務

    
4.測試
在瀏覽器所在主機中
vim /etc/hosts
172.25.254.136  www.westos.comnews.westos.com money.westos.com

3-unit9 apache

3-unit9 apache

3-unit9 apache

3-unit9 apache



####https#####
1.https定義
通過ssl加密

2.配置
yum install mod_ssl -y            ##安裝證書及其私鑰

yum install crypto-utils -y        ##安裝crypto-utils軟件包
genkey www.westos.com        ##調用genkey,同時為生成的文件指定唯一名稱

3-unit9 apache

##記錄生成的證書(www.westos.com.crt)和關聯的私鑰(www.westos.com.key)的位置:

3-unit9 apache

##繼續使用對話框,并選擇合適的密鑰大小:

3-unit9 apache

##在生成隨機數時比較慢,敲鍵盤和移動鼠標可以加速

3-unit9 apache

3-unit9 apache

##拒絕向認證機構(CA)發送證書請求(CSR)。3-unit9 apache

##拒絕加密私鑰

3-unit9 apache

##為服務器提供合適的身份

3-unit9 apache



##得到/etc/pki/tls/certs/www.westos.com.crt
/etc/pki/tls/private/www.westos.com.key
##
編輯/etc/httpd/conf.d/ssl.conf, 將SSLCertificateFile和SSLCertificateKeyFile指令設置為分別指向X.509證書和密鑰文件。

3-unit9 apache

vim /etc/httpd/conf.d/login.conf

<Virtualhost  *:443>            ##訪問443端口        
    ServerName"login.westos.com"        ##指定服務器名稱                                                        
    DocumentRoot"/var/www/virtual/login.westos.com/html"         ##網頁文件的存放目錄              
    CustomLog"logs/login.log" combined        ##日志        
    ssLEngine on     ##開啟https功能        
    SSLCertificateFile  /etc/pki/tls/certs/www.westos.com.crt  ## 證書        
    SSLCertificateKeyFile/etc/pki/tls/private/www.westos.com.key ##密鑰
</Virtualhost>
<Directory "/var/www/virtual/login.westos.com/html">       
    Require all granted
</Directory>
<Virtualhost  *:80>    ##網頁重寫把所有80端口的請求全部重定向由https來處理
       ServerName"login.westos.com"        
       REwriteEngine on        
       RewriteRule^(/.*)$ https://%{HTTP_HOST}$1 [redirect=301]
</Virtualhost>
#^(/.*)$ https://%{HTTP_HOST}$1 [redirect=301]
解析
#^(/.*)$             客戶主機在地址欄中寫入的所有字符,不好看換行符
#https://       定向成功的訪問協議
#%{HTTP_HOST}   客戶請求主機
#$1             $1的值就表示^(/.*)$的值 
#[redirect=301]  臨時重定向  302永久重定向

3-unit9 apache
mkdir /var/www/virtual/login.westos.com/html -p
vim /var/www/virtual/login.westos.com/html/index.html

<h2>haha www.westos.com</h2>


systemctl restart httpd

測試:
在客戶主機中添加解析
vim /etc/hosts
172.25.254.136 login.westos.com
3-unit9 apache
訪問http://login.westos.com會自動跳轉到
https://login.westos.com實現網頁數據加密傳輸

3-unit9 apache

3-unit9 apache

3-unit9 apache

3-unit9 apache


向AI問一下細節

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

AI

西青区| 东莞市| 乌拉特后旗| 登封市| 洱源县| 嘉鱼县| 靖安县| 枣强县| 尼玛县| 阿荣旗| 神木县| 汝州市| 乌什县| 牙克石市| 临西县| 安远县| 堆龙德庆县| 贵溪市| 荣成市| 全南县| 牡丹江市| 塔河县| 英吉沙县| 巴彦淖尔市| 额尔古纳市| 都江堰市| 康马县| 南岸区| 深圳市| 宿州市| 巴林左旗| 美姑县| 仁化县| 原阳县| 金秀| 淮阳县| 宁波市| 子洲县| 安溪县| 大竹县| 广灵县|