亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb

首頁 > 網站 > Apache > 正文

CentOS 7.2配置Apache服務httpd(上)

2024-08-27 18:30:36
字體:
來源:轉載
供稿:網友

一、Apache簡介

Apache HTTP Server(簡稱Apache)是Apache軟件基金會的一個開放源代碼的網頁服務器軟件,可以在大多數電腦操作系統中運行,由于其跨平臺和安全性(盡管不斷有新的漏洞被發現,但由于其開放源代碼的特點,漏洞總能被很快修補。因此總合來說,其安全性還是相當高的。)。被廣泛使用,是最流行的Web服務器軟件之一。它快速、可靠并且可通過簡單的API擴充,將Perl/Python等解釋器編譯到服務器中。

軟件圖標

CentOS7.2,Apache,httpd

二、安裝Apache httpd

安裝httpd以配置Web服務器, HTTP使用80 / TCP

[1] 安裝 httpd.[root@linuxprobe ~]# yum -y install httpd# 刪除默認歡迎頁面[root@linuxprobe ~]# rm -f /etc/httpd/conf.d/welcome.conf[2] 配置httpd,將服務器名稱替換為您自己的環境[root@linuxprobe ~]# vi /etc/httpd/conf/httpd.conf# line 86: 改變管理員的郵箱地址ServerAdmin root@linuxprobe.org# line 95: 改變域名信息ServerName www.linuxprobe.org:80# line 151: none變成AllAllowOverride All# line 164: 添加只能使用目錄名稱訪問的文件名DirectoryIndex index.html index.cgi index.php# add follows to the end# server's response header(安全性)ServerTokens Prod# keepalive is ONKeepAlive On[root@linuxprobe ~]# systemctl start httpd[root@linuxprobe ~]# systemctl enable httpd[3] 如果Firewalld正在運行,請允許HTTP服務。,HTTP使用80 / TCP[root@linuxprobe ~]# firewall-cmd --add-service=http --permanentsuccess[root@linuxprobe ~]# firewall-cmd --reloadsuccess[4] 創建一個HTML測試頁,并使用Web瀏覽器從客戶端PC訪問它。如果顯示以下頁面,是正確的[root@linuxprobe ~]# vi /var/www/html/index.html<html><body><div style="width: 100%; font-size: 40px; font-weight: bold; text-align: center;">Welcome access LinuxProbe.org,This is Test Page!</div></body></html>

CentOS7.2,Apache,httpd

三、支持Perl

啟用CGI執行并使用Perl腳本

[1] 安裝Perl.[root@linuxprobe ~]# yum -y install perl perl-CGI[2] 默認情況下,在“/var/www/cgi-bin”目錄下允許CGI。 可以使用Perl Scripts放在目錄下。然而,它下面的所有文件都被處理為CGI。# 下面的設置是CGI的設置[root@linuxprobe ~]# grep -n "^ *ScriptAlias" /etc/httpd/conf/httpd.conf247: ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"[3] 如果你想允許在其他目錄中的CGI,配置如下。 例如,在“/var/www/html/cgi-enabled”中允許。[root@linuxprobe ~]# vi /etc/httpd/conf.d/cgi-enabled.conf# create new# processes .cgi and .pl as CGI scripts<Directory "/var/www/html/cgi-enabled">  Options +ExecCGI  AddHandler cgi-script .cgi .pl</Directory>[root@linuxprobe ~]# systemctl restart httpd[4] 如果SELinux被啟用,并且允許CGI在不是像上面[3]的默認目錄下,更改規則如下。[root@linuxprobe ~]# chcon -R -t httpd_sys_script_exec_t /var/linuxprobe/html/cgi-enabled[root@linuxprobe ~]# semanage fcontext -a -t httpd_sys_script_exec_t /var/www/html/cgi-enabled[5] 創建一個CGI測試頁面,并使用Web瀏覽器從客戶端PC訪問它。如果顯示以下頁面,說明配置正確。[root@linuxprobe ~]# vi /var/www/html/cgi-enabled/index.cgi#!/usr/bin/perlprint "Content-type: text/html/n/n";print "<html>/n<body>/n";print "<div style=/"width: 100%; font-size: 40px; font-weight: bold; text-align: center;/">/n";print "CGI Test Page";print "/n</div>/n";print "</body>/n</html>/n";[root@linuxprobe ~]# chmod 705 /var/www/html/cgi-enabled/index.cgi 

CentOS7.2,Apache,httpd

四、支持PHP

配置httpd以使用PHP腳本
[1] 安裝PHP.

[root@linuxprobe ~]# yum -y install php php-mbstring php-pear[root@linuxprobe ~]# vi /etc/php.ini# line 878: 取消注釋,設置時區date.timezone = "Asia/Shanghai"[root@linuxprobe ~]# systemctl restart httpd

[2] 創建一個PHP測試頁面,并使用Web瀏覽器從客戶端PC訪問它。如果顯示以下頁面,它是確定。

[root@linuxprobe ~]# vi /var/www/html/index.php<html><body><div style="width: 100%; font-size: 40px; font-weight: bold; text-align: center;"><?php  print Date("Y/m/d");?></div></body></html>

CentOS7.2,Apache,httpd

[3] 創建phpinfo測試頁,確認是都開啟php支持
[root@linuxprobe ~]# echo "<?php phpinfo(); ?>" > /var/www/html/phpinfo.php

CentOS7.2,Apache,httpd

五、支持Ruby

配置httpd以將Ruby腳本用作CGI
[1] 安裝Ruby.
[root@linuxprobe ~]# yum -y install ruby

[2] 默認情況下,在“/var/www/cgi-bin”目錄下允許CGI。 
可以使用Perl Scripts放在目錄下。然而,它下面的所有文件都被處理為CGI。

# 下面的設置是CGI的設置[root@linuxprobe ~]# grep -n "^ *ScriptAlias" /etc/httpd/conf/httpd.conf247: ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"

[3] 如果你想允許在其他目錄中的CGI,配置如下。 
例如,在“/var/www/html/cgi-enabled”中允許。

[root@linuxprobe ~]# vi /etc/httpd/conf.d/cgi-enabled.conf# create new# processes .rb as CGI scripts<Directory "/var/www/html/cgi-enabled">  Options +ExecCGI  AddHandler cgi-script .rb</Directory>[root@linuxprobe ~]# systemctl restart httpd

[4] 如果SELinux被啟用,并且允許CGI在不是像上面[3]的默認目錄下,更改規則如下。

[root@linuxprobe ~]# chcon -R -t httpd_sys_script_exec_t /var/www/html/cgi-enabled[root@linuxprobe ~]# semanage fcontext -a -t httpd_sys_script_exec_t /var/www/html/cgi-enabled

[5] Create a CGI test page and access to it from client PC with web browser. It's OK if following page is shown.

[root@linuxprobe ~]# vi /var/www/html/cgi-enabled/index.rb#!/usr/bin/rubyprint "Content-type: text/html/n/n"print "<html>/n<body>/n"print "<div style=/"width: 100%; font-size: 40px; font-weight: bold; text-align: center;/">/n"print "Ruby Script Test Page"print "/n</div>/n"print "</body>/n</html>/n" [root@linuxprobe ~]# chmod 705 /var/www/html/cgi-enabled/index.rb 

CentOS7.2,Apache,httpd

六、支持Python

啟用CGI執行并使用Python腳本

[1] 安裝python.[root@linuxprobe ~]# yum -y install python[2] 默認情況下,在“/var/www/cgi-bin”目錄下允許CGI。 可以使用Perl Scripts放在目錄下。然而,它下面的所有文件都被處理為CGI。# 下面的設置是CGI的設置[root@linuxprobe ~]# grep -n "^ *ScriptAlias" /etc/httpd/conf/httpd.conf247: ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"[3] 如果你想允許在其他目錄中的CGI,配置如下。 例如,在“/var/www/html/cgi-enabled”中允許。[root@linuxprobe ~]# vi /etc/httpd/conf.d/cgi-enabled.conf# create new# processes .py as CGI scripts<Directory "/var/www/html/cgi-enabled">  Options +ExecCGI  AddHandler cgi-script .py</Directory>[root@linuxprobe ~]# systemctl restart httpd[4] 如果SELinux被啟用,并且允許CGI在不是像上面[3]的默認目錄下,更改規則如下。[root@linuxprobe ~]# chcon -R -t httpd_sys_script_exec_t /var/www/html/cgi-enabled[root@linuxprobe ~]# semanage fcontext -a -t httpd_sys_script_exec_t /var/www/html/cgi-enabled[5]   Create a CGI test page and access to it from client PC with web browser. It's OK if following page is shown.[root@linuxprobe ~]# vi /var/www/html/cgi-enabled/index.py#!/usr/bin/env pythonprint "Content-type: text/html/n/n"print "<html>/n<body>/n"print "<div style=/"width: 100%; font-size: 40px; font-weight: bold; text-align: center;/">/n"print "Python Script Test Page"print "/n</div>/n"print "</body>/n</html>/n" [root@linuxprobe ~]# chmod 705 /var/www/html/cgi-enabled/index.py

CentOS7.2,Apache,httpd

七、支持Userdir

啟用userdir,用戶可以使用此設置創建網站

[1] 配置 httpd.[root@linuxprobe ~]# vi /etc/httpd/conf.d/userdir.conf# line 17: comment out#UserDir disabled# line 24: uncommentUserDir public_html# line 31 - 35<Directory "/home/*/public_html">  AllowOverride All# change  Options None# change  Require method GET POST OPTIONS</Directory>[root@linuxprobe ~]# systemctl restart httpd[2] 創建一個測試頁,使用普通用戶通過客戶端PC與Web瀏覽器和訪問它,如果顯示以下頁面,就是正確的[cent@linuxprobe ~]$ mkdir public_html[cent@linuxprobe ~]$ chmod 711 /home/cent[cent@linuxprobe ~]$ chmod 755 /home/cent/public_html[cent@linuxprobe ~]$ vi ./public_html/index.html<html><body><div style="width: 100%; font-size: 40px; font-weight: bold; text-align: center;">UserDir Test Page</div></body></html>

瀏覽器訪問:http://linuxprobe.org/~wang/,出現如下界面

CentOS7.2,Apache,httpd

八、設置虛擬主機

配置虛擬主機以使用多個域名。
以下示例在域名為[linuxprobe.org],虛擬域名為[virtual.host(根目錄[/home/wang/public_html]]的環境中設置。
必須為此示例設置Userdir的設置

[1] 配置虛擬主機[root@linuxprobe ~]# vi /etc/httpd/conf.d/vhost.conf# for original domain<VirtualHost *:80>  DocumentRoot /var/www/html  ServerName www.linuxprobe.org</VirtualHost># for virtual domain<VirtualHost *:80>  DocumentRoot /home/cent/public_html  ServerName www.virtual.host  ServerAdmin webmaster@virtual.host  ErrorLog logs/virtual.host-error_log  CustomLog logs/virtual.host-access_log combined</VirtualHost>[root@linuxprobe ~]# systemctl restart httpd[2]創建測試頁并使用Web瀏覽器從客戶端計算機訪問它。如果顯示以下頁面,則是正確的:[cent@linuxprobe ~]$ vi ~/public_html/virtual.php<html><body><div style="width: 100%; font-size: 40px; font-weight: bold; text-align: center;">Virtual Host Test Page</div></body></html>[3]如果訪問測試時看不到相應頁面,可通過下面命令進行測試:[root@linuxprobe ~]# yum -y install elinks^C[root@linuxprobe ~]# elinks http://www.virtual.host/virtual.php

九、創建SSL證書

創建自己的SSL證書。但是,如果您使用您的服務器作為業務,最好購買和使用來自Verisigh的正式證書等。

[root@linuxprobe ~]# cd /etc/pki/tls/certcert.pem certs/  [root@linuxprobe ~]# cd /etc/pki/tls/certs/[root@linuxprobe certs]# make server.keyumask 77 ; //usr/bin/openssl genrsa -aes128 2048 > server.keyGenerating RSA private key, 2048 bit long modulus...............................................................+++....................................................................................................+++e is 65537 (0x10001)Enter pass phrase:Verifying - Enter pass phrase:[root@linuxprobe certs]# openssl rsa -in server.key -out server.keyEnter pass phrase for server.key:writing RSA key[root@linuxprobe certs]# make server.csrumask 77 ; //usr/bin/openssl req -utf8 -new -key server.key -out server.csrYou are about to be asked to enter information that will be incorporatedinto your certificate request.What you are about to enter is what is called a Distinguished Name or a DN.There are quite a few fields but you can leave some blankFor some fields there will be a default value,If you enter '.', the field will be left blank.-----Country Name (2 letter code) [XX]:CN  #國家后綴State or Province Name (full name) []:Shanghai #省Locality Name (eg, city) [Default City]:Shanghai #市Organization Name (eg, company) [Default Company Ltd]:LinuxProbe #公司Organizational Unit Name (eg, section) []:DevOps #部門Common Name (eg, your name or your server's hostname) []:linuxprobe.org #主機名Email Address []:root@linuxprobe.org #郵箱Please enter the following 'extra' attributesto be sent with your certificate requestA challenge password []:  #默認An optional company name []:  #默認#[root@linuxprobe certs]# openssl x509 -in server.csr -out server.crt -req -signkey server.key -days 3650Signature oksubject=/C=CN/ST=Shanghai/L=Shanghai/O=LinuxProbe/OU=DevOps/CN=linuxprobe.org/emailAddress=root@linuxprobe.orgGetting Private key

十、配置SSL

[1] 配置SSL.

[root@linuxprobe ~]# yum -y install mod_ssl[root@linuxprobe ~]# vi /etc/httpd/conf.d/ssl.conf# line 59: 取消注釋DocumentRoot "/var/www/html"# line 60: 取消注釋,定義域名ServerName linuxprobe.org:443# line 75: 改變SSLProtocolSSLProtocol -All +TLSv1 +TLSv1.1 +TLSv1.2# line 100: 改成剛剛創建的server.crtSSLCertificateFile /etc/pki/tls/certs/server.crt# line 107: 改成剛剛創建的server.keySSLCertificateKeyFile /etc/pki/tls/certs/server.key[root@www ~]# systemctl restart httpd

[2] 如果Firewalld正在運行,請允許HTTPS服務。 HTTPS使用443 / TCP

[root@www ~]# firewall-cmd --add-service=https --permanentsuccess[root@www ~]# firewall-cmd --reloadsuccess

[3] 使用Web瀏覽器通過HTTPS從客戶端計算機訪問測試頁。下面的示例是Fiorefix。顯示以下屏幕,因為證書是自己創建的,但它沒有ploblem,繼續下一步。

CentOS7.2,Apache,httpd

十一、啟用基本身份驗證

啟用基本身份驗證以限制特定網頁的訪問

[1]例如,在目錄[/var/www/html/auth-basic]下設置基本身份驗證設置。

 [root@linuxprobe ~]# vi /etc/httpd/conf.d/auth_basic.conf# 創建新配置文件<Directory /var/www/html/auth-basic>  AuthType Basic  AuthName "Basic Authentication"  AuthUserFile /etc/httpd/conf/.htpasswd  require valid-user</Directory># 添加用戶:使用“-c”創建新文件(僅為初始注冊添加“-c”選項)[root@linuxprobe ~]# htpasswd -c /etc/httpd/conf/.htpasswd wangNew password: # set passwordRe-type new password: # confirmAdding password for user wang[root@linuxprobe ~]# systemctl restart httpd[root@linuxprobe ~]# mkdir /var/www/html/auth-basic[root@linuxprobe ~]# vi /var/www/html/auth-basic/index.html# create a test page<html><body><div style="width: 100%; font-size: 40px; font-weight: bold; text-align: wanger;">Test Page for Basic Auth</div></body></html>

[2] 使用Web瀏覽器從客戶端計算機訪問測試頁。然后需要認證,如下所示作為設置,用在[1]中添加的用戶回答

CentOS7.2,Apache,httpd

十二、基本Auth + PAM

限制特定網頁上的訪問,并使用OS用戶通過SSL連接進行身份驗證
[1] 創建證書,請參照上文所述。
[2] 例如,在[/var/www/html/auth-pam]目錄下設置Basic Auth。

# install from EPEL[root@linuxprobe ~]# yum --enablerepo=epel -y install mod_authnz_external pwauth[root@linuxprobe ~]# vi /etc/httpd/conf.d/authnz_external.conf# add to the end<Directory /var/www/html/auth-pam>  SSLRequireSSL  AuthType Basic  AuthName "PAM Authentication"  AuthBasicProvider external  AuthExternal pwauth  require valid-user</Directory>[root@linuxprobe ~]# mkdir /var/www/html/auth-pam[root@linuxprobe ~]# vi /var/www/html/auth-pam/index.html# create a test page<html><body><div style="width: 100%; font-size: 40px; font-weight: bold; text-align: center;">Test Page for PAM Auth</div></body></html>[root@linuxprobe ~]# systemctl restart httpd

[3]  在客戶端上使用Web瀏覽器訪問測試頁面https://linuxprobe.org/auth-pam/,并與操作系統上的用戶進行身份驗證。

CentOS7.2,Apache,httpd

十三、使用WebDAV

下面是使用SSL連接配置WebDAV設置的示例
[1] 創建證書,請參照上文所述
[2] 例如,創建一個目錄[webdav],它使得可以僅通過SSL連接到WebDAV目錄。

[root@linuxprobe ~]# mkdir /home/webdav[root@linuxprobe ~]# chown apache. /home/webdav[root@linuxprobe ~]# chmod 770 /home/webdav[root@linuxprobe ~]# vi /etc/httpd/conf.d/webdav.conf# create newDavLockDB "/tmp/DavLock"Alias /webdav /home/webdav<Location /webdav>  DAV On  SSLRequireSSL  Options None  AuthType Basic  AuthName WebDAV  AuthUserFile /etc/httpd/conf/.htpasswd  <RequireAny>    Require method GET POST OPTIONS    Require valid-user  </RequireAny></Location># 添加用戶:使用“-c”創建新文件(僅為初始注冊添加“-c”選項)[root@linuxprobe ~]# htpasswd -c /etc/httpd/conf/.htpasswd wangNew password:   # set passwordRe-type new password:Adding password for user wang# **注意:用戶wang的htpasswd已經創建過,不需要重復創建**[root@linuxprobe ~]# systemctl restart httpd

[3]  如果啟用了SELinux,請更改以下規則。 

[root@linuxprobe ~]# chcon -R -t httpd_sys_rw_content_t /home/webdav[root@linuxprobe ~]# semanage fcontext -a -t httpd_sys_rw_content_t /home/webdav

[4]  這是PC上的WebDAV客戶端的設置(Windows 10)。
下載“CarotDAV”,這是一個免費的WebDAV客戶端,從以下網站⇒ http://www.rei.to/carotdav_en.html ,下載后,安裝并啟動CarotDAV,然后顯示以下屏幕,單擊“文件”按鈕并選擇“WebDAV”。

CentOS7.2,Apache,httpd

[5]在“設置名稱”字段中輸入任何名稱,并在“URI”字段中輸入[服務器名稱/ webdav目錄],并輸入用戶名和密碼

CentOS7.2,Apache,httpd

[7]配置添加如下,點擊它連接到服務器。

CentOS7.2,Apache,httpd

[8] waring顯示如下,它的SSL證書沒有安裝在您的電腦上,它沒有ploblem,點擊“忽略”,然后去下一步。

CentOS7.2,Apache,httpd

[9] 到webdav目錄下創建測試目錄和文件

[root@linuxprobe tmp]# cd /home/webdav/[root@linuxprobe webdav]# mkdir linuxprobe[root@linuxprobe webdav]# mkdir linuxcool[root@linuxprobe webdav]# touch vdevops.txt[root@linuxprobe webdav]# touch linuxcool.txt

CentOS7.2,Apache,httpd

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持VEVB武林網。


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
日韩专区在线播放| 亚洲人a成www在线影院| 最近中文字幕2019免费| 欧美理论电影在线播放| 亚洲精品小视频在线观看| 日韩视频在线免费| 亚洲国产毛片完整版| 国产精品视频999| 国产精品伦子伦免费视频| 欧美性高潮在线| 日韩在线观看免费网站| 黑人巨大精品欧美一区免费视频| 国产美女高潮久久白浆| 91深夜福利视频| 国产精品亚洲自拍| 欧美激情视频网站| 亚洲综合精品一区二区| 欧美性猛交99久久久久99按摩| 91精品国产自产在线老师啪| 午夜美女久久久久爽久久| 精品国产鲁一鲁一区二区张丽| 亚洲欧美激情另类校园| 欧美影院在线播放| 国产一区二区美女视频| 夜色77av精品影院| 日韩av网站在线| 综合国产在线视频| 成人妇女免费播放久久久| 欧美国产精品va在线观看| 亚洲奶大毛多的老太婆| 日韩在线观看视频免费| 亚洲激情小视频| 欧美性受xxx| 国产91在线播放九色快色| 亚洲精品wwwww| 欧美一级淫片播放口| 色妞一区二区三区| 亚洲精品视频免费| 97在线看福利| 在线观看日韩欧美| 亚洲精品福利资源站| 亚洲国产欧美一区二区三区久久| 日本精品久久久久影院| 中文字幕日本欧美| 欧美性xxxx极品hd欧美风情| 日韩有码在线视频| 疯狂做受xxxx欧美肥白少妇| 亚洲一品av免费观看| 国语对白做受69| 日韩电影视频免费| 国产99久久精品一区二区永久免费| 日韩专区在线观看| 精品av在线播放| 精品久久久久久亚洲精品| 亚洲精品国产综合区久久久久久久| 久久夜色精品国产| 日韩成人在线视频观看| 国产精品电影观看| 66m—66摸成人免费视频| 欧美在线一级va免费观看| 国产精品日韩欧美大师| 欧美成人自拍视频| 亚洲精品一区二区三区不| 久久精品国产69国产精品亚洲| 欧美视频不卡中文| 国产精品一区二区久久久久| 色小说视频一区| 欧美日韩在线视频一区| 日韩高清电影免费观看完整版| 色偷偷噜噜噜亚洲男人| 91沈先生在线观看| 亚洲欧美国产va在线影院| 欧美中文在线视频| 亚洲国产天堂久久国产91| 久久久999国产| 国产一区二区三区视频在线观看| 亚洲成av人片在线观看香蕉| 久久久视频在线| 中文字幕一精品亚洲无线一区| 91免费国产网站| 奇米4444一区二区三区| 亚洲最大av网| 国产精品一区二区av影院萌芽| 国产精品免费久久久| 美女性感视频久久久| 日韩美女写真福利在线观看| 精品国产户外野外| 国产91在线播放九色快色| 欧美孕妇毛茸茸xxxx| 亚洲精品国精品久久99热一| 久久久久久亚洲精品中文字幕| 日韩av在线电影网| 亚洲一区制服诱惑| 日韩不卡中文字幕| 亚洲国产成人精品女人久久久| 福利精品视频在线| 色综合色综合网色综合| 国产99久久久欧美黑人| 久久99精品久久久久久琪琪| 成人妇女淫片aaaa视频| 欧美日韩国产一区二区| 国产91在线播放九色快色| 欧美一级成年大片在线观看| 欧美成人午夜激情在线| 亚洲三级黄色在线观看| 中文字幕日韩av电影| 欧美日韩国内自拍| 欧美日韩高清区| 亚洲精品久久久久中文字幕欢迎你| 国产精品久久久久福利| 国产精品免费小视频| 久久成年人视频| 欧美黑人xxx| 久久99国产精品自在自在app| 亚洲精品在线观看www| 中文国产成人精品久久一| 亚洲欧美日韩高清| 另类色图亚洲色图| 欧美在线观看网站| 日韩大片免费观看视频播放| 欧美午夜影院在线视频| 日韩女优人人人人射在线视频| 成人疯狂猛交xxx| 海角国产乱辈乱精品视频| 日韩视频在线免费观看| 欧美日韩一区二区精品| 欧美激情精品久久久久久变态| 欧美日韩在线观看视频小说| 日韩欧美一区视频| 97视频免费看| 这里只有精品在线播放| 亚洲国产精品一区二区三区| 亚洲国产精久久久久久| 国产噜噜噜噜久久久久久久久| 成人久久久久久久| 久久97精品久久久久久久不卡| 色妞在线综合亚洲欧美| 成人情趣片在线观看免费| 97香蕉久久夜色精品国产| 欧美在线视频观看| 日韩经典中文字幕在线观看| 中文字幕日韩精品在线观看| 日韩av电影在线播放| 在线观看精品国产视频| 欧美在线免费视频| 欧美与欧洲交xxxx免费观看| 国产91|九色| 成人性生交大片免费观看嘿嘿视频| 国产99久久精品一区二区永久免费| 日本午夜精品理论片a级appf发布| 尤物精品国产第一福利三区| 北条麻妃一区二区在线观看| 久久久久久久网站| 在线看日韩av| 亚洲最大福利网| 欧美午夜影院在线视频| 国产69精品久久久久99| 久久精品国产亚洲一区二区| 国产丝袜一区视频在线观看| 国产精品久久久久久久久久久不卡| 亚洲国产天堂网精品网站| 国产精品自拍偷拍视频| 欧洲精品久久久| 国产精品久久久久久久美男|