欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

詳述Linux系統(tǒng)中Apache配置與應(yīng)用(二)

日志分割

  • 隨著網(wǎng)站的訪問(wèn)量增加,默認(rèn)情況下Apache的單個(gè)日志文件也會(huì)越來(lái)越大

    站在用戶的角度思考問(wèn)題,與客戶深入溝通,找到薩迦網(wǎng)站設(shè)計(jì)與薩迦網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶體驗(yàn)好的作品,建站類(lèi)型包括:成都做網(wǎng)站、網(wǎng)站設(shè)計(jì)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、域名與空間、網(wǎng)站空間、企業(yè)郵箱。業(yè)務(wù)覆蓋薩迦地區(qū)。

    • 日志文件占用磁盤(pán)空間很大
    • 查看相關(guān)信息不方便
  • 對(duì)日志文件進(jìn)行分割
    • Apache自帶rotatelogs分割工具實(shí)現(xiàn)
    • 第三方工具cronolog分割

rotatelogs分割

  • 配置網(wǎng)站的日志文件轉(zhuǎn)交給rotatelogs分割處理
  • 配置格式為
ErrorLog 4| rotatelogs命令的絕對(duì)路徑-I日志文件路徑/網(wǎng)站名-error %Y%m%d.log 86400"-
CustomLog "| rotatelogs命令路徑-I日志文件路徑/網(wǎng)站名-access %Y%m%d.log 86400" combined

配合實(shí)例

[root@localhost ~]# yum install httpd -y    //安裝http服務(wù)
已加載插件:fastestmirror, langpacks
Loading mirror speeds from cached hostfile
 * base: centos.ustc.edu.cn
 * extras: centos.ustc.edu.cn
...//省略部分內(nèi)容...
已安裝:
  httpd.x86_64 0:2.4.6-90.el7.centos   
...//省略部分內(nèi)容...
完畢!
[root@localhost bin]# cd /usr/sbin/    //進(jìn)入sbin目錄
[root@localhost sbin]# ls rotat*      //查看目錄下是否生成命令
rotatelogs                         //安裝http服務(wù)后生成rotatelogs命令
[root@localhost sbin]# cd /var/log/httpd/    //進(jìn)入http服務(wù)日志存放目錄
[root@localhost httpd]# ls                  //查看是否生成日志文件
[root@localhost httpd]#                   //安裝完成后并沒(méi)有生成目錄文件
[root@localhost httpd]# vim /etc/httpd/conf/httpd.conf  //進(jìn)入http配置文件,進(jìn)行常規(guī)配置
...//省略部分內(nèi)容...
# prevent Apache from glomming onto all bound IP addresses.
#
Listen 192.168.144.133:80             //修改IPv4為本地地址
#Listen 80                            //注釋掉IPv6監(jiān)聽(tīng)
...//省略部分內(nèi)容...
# If your host doesn't have a registered DNS name, enter its IP address here.
#
ServerName www.kgc.com:80             //開(kāi)啟域名服務(wù)

#
# Deny access to the entirety of your server's filesystem. You must
...//省略部分內(nèi)容...
:wq
[root@localhost httpd]# systemctl stop firewalld.service     //關(guān)閉防火墻
[root@localhost httpd]# setenforce 0               //關(guān)閉增強(qiáng)型安全功能
[root@localhost httpd]# systemctl start httpd.service   //啟動(dòng)http服務(wù)
[root@localhost httpd]# ls         //查看是否生成日志文件
access_log  error_log               //服務(wù)開(kāi)啟后成功生成日志文件
[root@localhost httpd]# vim conf/httpd.conf   //進(jìn)入更改主配置文件,做日志分割
...//省略部分內(nèi)容...
# container, that host's errors will be logged there and not here.
#
#ErrorLog "logs/error_log"      //復(fù)制此條目,并將此條目在下方粘貼
ErrorLog "| /usr/sbin/rotatelogs -l logs/www.kgc.com.error_%Y%m%log 86400"
//更改條目,引用rotatelogs命令,創(chuàng)建分割日志條目名稱(chēng),每86400秒(一天)創(chuàng)建一次文件
# LogLevel: Control the number of messages logged to the error_log.
...//省略部分內(nèi)容...
    # (Combined Logfile Format) you can use the following directive.
    #
    #CustomLog "logs/access_log" combined //復(fù)制此條目,并將此條目在下方粘貼
    CustomLog "| /usr/sbin/rotatelogs -l logs/www.kgc.com.access_%Y%m%dlog 86400" combined
    //更改條目,引用rotatelogs命令,創(chuàng)建分割日志條目名稱(chēng),每86400秒(一天)創(chuàng)建一次文件
</IfModule>

<IfModule alias_module>
...//省略部分內(nèi)容...
:wq
[root@localhost httpd]# systemctl stop httpd.service    //停止http服務(wù)
[root@localhost httpd]# systemctl start httpd.service   //啟動(dòng)http服務(wù)
[root@localhost httpd]# cd ..
[root@localhost log]# cd ~
[root@localhost ~]# cd /var/log/httpd/      //重新進(jìn)入站點(diǎn)文件
[root@localhost httpd]# ls
access_log  error_log  www.kgc.com.error_20191105log      //顯示分割除來(lái)的日志文件
[root@localhost httpd]# date             //查看時(shí)間
2019年 11月 05日 星期二 19:27:50 CST
[root@localhost httpd]# date -s 11/06/19   //將時(shí)間設(shè)置后一天
2019年 11月 06日 星期三 00:00:00 CST
[root@localhost httpd]# systemctl stop httpd.service      //關(guān)閉http服務(wù)
[root@localhost httpd]# systemctl start httpd.service     //啟動(dòng)服務(wù) 
[root@localhost httpd]# cd ~            //回到家目錄
[root@localhost ~]# cd /var/log/httpd/  //重新今日日志存放目錄
[root@localhost httpd]# ls        //查看
access_log  error_log  www.kgc.com.error_20191105log  www.kgc.com.error_20191106log 
//生成新的日志文件

第三方工具cronolog

  • 源碼編譯安裝cronolog工具 cronolog安裝包下載
  • 配置網(wǎng)站日志文件轉(zhuǎn)交給cronolog分割處理
  • 配置格式為:
ErrorLog "| cronolog命令的絕對(duì)路徑日志文件路徑/網(wǎng)站名-error_ %Y%m%d.log'
CustomLog "| cronolog命令的絕對(duì)路徑|日志文件路徑/網(wǎng)站名%Y%m%d.log" combined

配置實(shí)例

重新開(kāi)啟一臺(tái)Linux虛擬機(jī),重新安裝http服務(wù)

[root@localhost ~]# yum install httpd -y      //安裝服務(wù)
已加載插件:fastestmirror, langpacks
Loading mirror speeds from cached hostfile
 * base: centos.ustc.edu.cn
...//省略部分內(nèi)容...
已安裝:
  httpd.x86_64 0:2.4.6-90.el7.centos 
...//省略部分內(nèi)容...
[root@localhost ~]# mount.cifs //192.168.100.10/lamp-c7 /mnt   //遠(yuǎn)程掛載目錄
Password for root@//192.168.100.10/lamp-c7:  
[root@localhost ~]# cd /mnt/              //進(jìn)入掛載目錄
[root@localhost mnt]# ls       //查看是否成功掛載
apr-1.6.2.tar.gz       cronolog-1.6.2-14.el7.x86_64.rpm  httpd-2.4.29.tar.bz2  MySQL-5.6.26.tar.gz
apr-util-1.6.0.tar.gz  Discuz_X2.5_SC_UTF8.zip           LAMP-php5.6.txt       nginx-1.12.0.tar.gz
awstats-7.6.tar.gz     error.png                         miao.jpg              php-5.6.11.tar.bz2
[root@localhost mnt]# rpm -ivh cronolog-1.6.2-14.el7.x86_64.rpm         //安裝軟件包
警告:cronolog-1.6.2-14.el7.x86_64.rpm: 頭V3 RSA/SHA256 Signature, 密鑰 ID 352c64e5: NOKEY
準(zhǔn)備中...                          ################################# [100%]
正在升級(jí)/安裝...
   1:cronolog-1.6.2-14.el7            ################################# [100%]
[root@localhost mnt]# cd /usr/sbin/           //進(jìn)入目錄
[root@localhost sbin]# ls cronolog*           //查看是否生成cronolog命令
cronolog                                      //成功安裝
[root@localhost sbin]# vim /etc/httpd/conf/httpd.conf    //進(jìn)入編輯配置文件
...//省略部分內(nèi)容...
# prevent Apache from glomming onto all bound IP addresses.
#
Listen 192.168.144.133:80          //設(shè)置監(jiān)聽(tīng)地址
#Listen 80

#
# Dynamic Shared Object (DSO) Support
...//省略部分內(nèi)容...
# If your host doesn't have a registered DNS name, enter its IP address here.
#
ServerName www.kgc.com:80         //設(shè)置域名

#
# Deny access to the entirety of your server's filesystem. You must
...//省略部分內(nèi)容...
# container, that host's errors will be logged there and not here.
#
ErrorLog "| /usr/sbin/cronolog logs/www.kgc.com.error_%Y%m%dlog"
//調(diào)用cronolog命令創(chuàng)建錯(cuò)誤日志文件
#
# LogLevel: Control the number of messages logged to the error_log.
...//省略部分內(nèi)容...
   # (Combined Logfile Format) you can use the following directive.
    #
    CustomLog "| /usr/sbin/cronolog logs/www.kgc.com.access_%Y%m%dlog" combined
    //調(diào)用cronolog命令創(chuàng)建訪問(wèn)日志文件
</IfModule>
...//省略部分內(nèi)容...
:wq
[root@localhost sbin]# systemctl stop firewalld.service    //關(guān)閉防火墻
[root@localhost sbin]# setenforce 0                        //關(guān)閉增強(qiáng)性安全功能
[root@localhost sbin]# systemctl start httpd.service       //開(kāi)啟http服務(wù)
[root@localhost sbin]# cd /var/log/httpd/               //進(jìn)入日志文件目錄
[root@localhost httpd]# ls                             //查看
www.kgc.com.error_20191105log                           //生成日志分割文件
[root@localhost httpd]# date                        //查看當(dāng)前時(shí)間
2019年 11月 05日 星期二 20:11:57 CST
[root@localhost httpd]# date -s 11/06/19            //將時(shí)間設(shè)置為后一天
2019年 11月 06日 星期三 00:00:00 CST
[root@localhost httpd]# systemctl stop httpd.service        //停止http服務(wù)
[root@localhost httpd]# systemctl start httpd.service       //啟動(dòng)http服務(wù)
[root@localhost httpd]# cd ~                                 //回到家目錄
[root@localhost ~]# cd /var/log/httpd/                     //重新進(jìn)入日志目錄
[root@localhost httpd]# ls                                   //查看
www.kgc.com.error_20191105log  www.kgc.com.error_20191106log  //生成新的日志文件

AWStats日志分析系統(tǒng)介紹

AWStats日志分析系統(tǒng)

  • Perl語(yǔ)言開(kāi)發(fā)的一款開(kāi)源日志分析系統(tǒng)
  • 可用來(lái)分析Apache、Samba、 Vsftpd、 IIS等服務(wù) 器的訪問(wèn)日志
  • 信息結(jié)合crond等計(jì)劃任務(wù)服務(wù),可對(duì)日志內(nèi)容定期進(jìn)行分析

部署AWStats日志分析系統(tǒng)

  • 重新開(kāi)啟一臺(tái)Linux虛擬機(jī),安裝http、DNS服務(wù),并進(jìn)行常規(guī)配置
[root@localhost ~]# yum install bind httpd -y
已加載插件:fastestmirror, langpacks
Loading mirror speeds from cached hostfile
 * base: mirrors.163.com
...//省略部分內(nèi)容...
已安裝:
  bind.x86_64 32:9.11.4-9.P2.el7                    httpd.x86_64 0:2.4.6-90.el7.centos       
...//省略部分內(nèi)容...
[root@localhost ~]# vim /etc/named.conf 
...//省略部分內(nèi)容...
options {
        listen-on port 53 { any; };
        listen-on-v6 port 53 { ::1; };
        directory       "/var/named";
        dump-file       "/var/named/data/cache_dump.db";
        statistics-file "/var/named/data/named_stats.txt";
        memstatistics-file "/var/named/data/named_mem_stats.txt";
        recursing-file  "/var/named/data/named.recursing";
        secroots-file   "/var/named/data/named.secroots";
        allow-query     { any; };
...//省略部分內(nèi)容...
[root@localhost ~]# vim /etc/named.rfc1912.zones
...//省略部分內(nèi)容...
zone "kgc.com" IN {
        type master;
        file "kgc.com.zone";
        allow-update { none; };
};
...//省略部分內(nèi)容...
[root@localhost named]# cp -p named.localhost kgc.com.zone
[root@localhost named]# vim kgc.com.zone 
$TTL 1D
@       IN SOA  @ rname.invalid. (
                                        0       ; serial
                                        1D      ; refresh
                                        1H      ; retry
                                        1W      ; expire
                                        3H )    ; minimum
        NS      @
        A       127.0.0.1
www IN  A       192.168.144.133
:wq
[root@localhost named]# vim /etc/httpd/conf/httpd.conf
...//省略部分內(nèi)容...
# prevent Apache from glomming onto all bound IP addresses.
#
Listen 192.168.144.133:80
#Listen 80

#
# Dynamic Shared Object (DSO) Support
...//省略部分內(nèi)容...
# If your host doesn't have a registered DNS name, enter its IP address here.
#
ServerName www.kgc.com:80

#
# Deny access to the entirety of your server's filesystem. You must
...//省略部分內(nèi)容...
:wq
[root@localhost named]# systemctl stop firewalld.service 
[root@localhost named]# setenforce 0
[root@localhost named]# systemctl start named
[root@localhost named]# systemctl start httpd.service 
  • 在客戶機(jī)中測(cè)試網(wǎng)站是否可以訪問(wèn)
    詳述Linux系統(tǒng)中Apache配置與應(yīng)用(二)詳述Linux系統(tǒng)中Apache配置與應(yīng)用(二)
  • 安裝AWStats軟件包
[root@localhost named]# cd /etc/httpd/                
[root@localhost httpd]# mount.cifs //192.168.100.10/lamp-c7 /mnt     //將軟件存放目錄掛載在mnt目錄下
Password for root@//192.168.100.10/lamp-c7:                           //直接回車(chē)
[root@localhost httpd]# cd /mnt/                                    //查看掛目錄
[root@localhost mnt]# ls
apr-1.6.2.tar.gz       cronolog-1.6.2-14.el7.x86_64.rpm  httpd-2.4.29.tar.bz2  mysql-5.6.26.tar.gz
apr-util-1.6.0.tar.gz  Discuz_X2.5_SC_UTF8.zip           LAMP-php5.6.txt       nginx-1.12.0.tar.gz
awstats-7.6.tar.gz     error.png                         miao.jpg              php-5.6.11.tar.bz2
[root@localhost mnt]# tar zxvf awstats-7.6.tar.gz -C /opt/                //解壓awstats工具在opt目錄
awstats-7.6/ 
awstats-7.6/tools/
awstats-7.6/tools/awstats_buildstaticpages.pl
...//省略部分內(nèi)容...
[root@localhost mnt]# cd /opt/                                    //進(jìn)入opt目錄                    
[root@localhost opt]# ls
awstats-7.6  rh
[root@localhost opt]# mv awstats-7.6/ /usr/local/awstats          //將解壓的文件移動(dòng)至/usr/local/目錄下
[root@localhost opt]# cd /usr/local/                           //進(jìn)入local目錄
[root@localhost local]# ls
awstats  bin  etc  games  include  lib  lib64  libexec  sbin  share  src
[root@localhost local]# cd awstats/                //進(jìn)入awstats目錄
[root@localhost awstats]# ls
docs  README.md  tools  wwwroot
[root@localhost awstats]# cd tools/               //進(jìn)入工具存放目錄
[root@localhost tools]# ls                   //查看可執(zhí)行工具
awstats_buildstaticpages.pl  awstats_updateall.pl  httpd_conf          nginx               xslt
awstats_configure.pl         dolibarr              logresolvemerge.pl  urlaliasbuilder.pl
awstats_exportlib.pl         geoip_generator.pl    maillogconvert.pl   webmin
  • 為要統(tǒng)計(jì)的站點(diǎn)建立配置文件
[root@localhost tools]# ./awstats_configure.pl      //執(zhí)行配置工具

----- AWStats awstats_configure 1.0 (build 20140126) (c) Laurent Destailleur -----
This tool will help you to configure AWStats to analyze statistics for
one web server. You can try to use it to let it do all that is possible
...//省略部分內(nèi)容...
Enter full config file path of your Web server.
Example: /etc/httpd/httpd.conf
Example: /usr/local/apache2/conf/httpd.conf
Example: c:\Program files\apache group\apache\conf\httpd.conf
Config file path ('none' to skip web server setup):
> /etc/httpd/conf/httpd.conf                              //輸入http配置文件路徑
...//省略部分內(nèi)容...
-----> Need to create a new config file ?
Do you want me to build a new AWStats config/profile
file (required if first install) [y/N] ? y               //輸入y確認(rèn)

-----> Define config file name to create
What is the name of your web site or profile analysis ?
Example: www.mysite.com
Example: demo
Your web site, virtual server or profile name:
> www.kgc.com                                          //輸入網(wǎng)頁(yè)域名
-----> Define config file path
In which directory do you plan to store your config file(s) ?
Default: /etc/awstats                                          
Directory path to store config file(s) (Enter for default):
>                                                   //直接回車(chē),默認(rèn)存放配置文件路徑即可
...//省略部分內(nèi)容...
Or if you have several config files and prefer having only one command:
/usr/local/awstats/tools/awstats_updateall.pl now
Press ENTER to continue... 

A SIMPLE config file has been created: /etc/awstats/awstats.www.kgc.com.conf
You should have a look inside to check and change manually main parameters.
You can then manually update your statistics for 'www.kgc.com' with command:
> perl awstats.pl -update -config=www.kgc.com
You can also read your statistics for 'www.kgc.com' with URL:
> http://localhost/awstats/awstats.pl?config=www.kgc.com             //給出分析訪問(wèn)網(wǎng)址

Press ENTER to finish...

[root@localhost tools]# cd /etc/httpd/conf               //進(jìn)入http配置文件目錄
[root@localhost conf]# vim httpd.conf                    //編輯配置文件
...//省略部分內(nèi)容...
# This is to permit URL access to scripts/files in AWStats directory.
#
<Directory "/usr/local/awstats/wwwroot">                //自動(dòng)生成配置文件
    Options None
    AllowOverride None                          
#    Order allow,deny              //注釋掉訪問(wèn)權(quán)限設(shè)置
#    Allow from all
     Require all granted          //添加條目分為所有人都可以訪問(wèn)
</Directory>
:wq
  • 修改站點(diǎn)統(tǒng)計(jì)配置文件
[root@localhost etc]# cd /etc/awstats/        //進(jìn)入配置awstats配置文件目錄
[root@localhost awstats]# ls                  //查看
awstats.www.kgc.com.conf                      //awstats配置文件
[root@localhost awstats]# ls /var/log/httpd/  //查看http服務(wù)日志文件名稱(chēng)
access_log  error_log
[root@localhost awstats]# vim awstats.www.kgc.com.conf     //進(jìn)入awstats配置文件
...//省略部分內(nèi)容...
# Example: "/pathtotools/logresolvemerge.pl *.log |"  
#
LogFile="/var/log/httpd/access_log"                         //找到次條目,更改要分析的日志文件名稱(chēng)即可

# Enter the log file type you want to analyze.
...//省略部分內(nèi)容...
# Example: "C:/awstats_data_dir"
# Default: "."          (means same directory as awstats.pl)
#
DirData="/var/lib/awstats"                          //找到此條目,查看分析后數(shù)據(jù)的存放位置

# Relative or absolute web URL of your awstats cgi-bin directory.
...//省略部分內(nèi)容...
:wq
[root@localhost awstats]# cd /var/lib/        //進(jìn)入lib目錄
[root@localhost lib]# mkdir awstats            //創(chuàng)建awstats分析數(shù)據(jù)存放目錄
[root@localhost lib]# ls                       //查看目錄是否成功創(chuàng)建
AccountsService  chrony    flatpak   initramfs   misc    PackageKit  rpm-state       systemd  yum
alsa             color     fprint    ipa-client  mlocate   plymouth    rsyslog         tpm
alternatives     colord    games     iscsi       net-snmp      polkit-1    samba           tuned
authconfig       dav       gdm       libvirt     NetworkManager  postfix     selinux     udisks2
awstats          dbus      geoclue   lldpad      nfs          pulse      setroubleshoot  upower
bluetooth        dhclient  gssproxy  logrotate   ntp           rpcbind     sss             vmware
certmonger       dnsmasq   hyperv    machines    os-prober       rpm         stateless       xkb
[root@localhost lib]# systemctl restart httpd.service    //重啟http服務(wù)
  • 在客戶機(jī)中測(cè)試awstats工具
    詳述Linux系統(tǒng)中Apache配置與應(yīng)用(二)

  • 這個(gè)時(shí)候訪問(wèn)的awstats是沒(méi)有做統(tǒng)計(jì)分析的,我們需要執(zhí)行更新數(shù)據(jù)工具來(lái)執(zhí)行統(tǒng)計(jì)
[root@localhost lib]# cd /usr/local/awstats/  //進(jìn)入awstats工具目錄
[root@localhost awstats]# ls
docs  README.md  tools  wwwroot
[root@localhost awstats]# cd tools/          //進(jìn)入工具目錄
[root@localhost tools]# ls
awstats_buildstaticpages.pl  awstats_updateall.pl  httpd_conf          nginx               xslt
awstats_configure.pl         dolibarr              logresolvemerge.pl  urlaliasbuilder.pl
awstats_exportlib.pl         geoip_generator.pl    maillogconvert.pl   webmin
[root@localhost tools]# ./awstats_updateall.pl now   //執(zhí)行工具進(jìn)行更新,注意不要忘記后面加now
Running '"/usr/local/awstats/wwwroot/cgi-bin/awstats.pl" -update -config=www.kgc.com -configdir="/etc/awstats"' to update config www.kgc.com
Create/Update database for config "/etc/awstats/awstats.www.kgc.com.conf" by AWStats version 7.6 (build 20161204)
From data in log file "/var/log/httpd/access_log"...
Phase 1 : First bypass old records, searching new record...
Searching new records from beginning of log file...
Phase 2 : Now process new records (Flush history on disk after 20000 hosts)...
Jumped lines in file: 0
Parsed lines in file: 48
 Found 0 dropped records,
 Found 0 comments,
 Found 0 blank records,
 Found 0 corrupted records,                    //成功更新
 Found 0 old records,
 Found 48 new qualified records.
  • 在客戶機(jī)重新訪問(wèn)awstats

詳述Linux系統(tǒng)中Apache配置與應(yīng)用(二)

  • 設(shè)置周期性計(jì)劃任務(wù),自動(dòng)統(tǒng)計(jì)訪問(wèn)信息,并優(yōu)化訪問(wèn)路徑
[root@localhost tools]# crontab -e      //設(shè)置周期性計(jì)劃任務(wù)
*/5 * * * *     /usr/local/awstats/tools/./awstats_updateall.pl now   //設(shè)置每5分鐘執(zhí)行一次
~
~
:wq
[root@localhost tools]# systemctl start crond               //啟動(dòng)周期性計(jì)劃任務(wù)
[root@localhost tools]# cd /var/www/html/                   //進(jìn)入http站點(diǎn)目錄
[root@localhost html]# vim aws.html                         //編輯網(wǎng)頁(yè)
<html>
  <head>    <meta http-equiv=refresh content="0;url=http://www.kgc.com/awstats/awstats.pl?config=www.kgc.com">                    //編輯網(wǎng)頁(yè)內(nèi)容
   </head>
   <body></body>
</html>
:wq                        //保存退出
  • 在客戶機(jī)中測(cè)試優(yōu)化的訪問(wèn)路徑是否可以使用

詳述Linux系統(tǒng)中Apache配置與應(yīng)用(二)詳述Linux系統(tǒng)中Apache配置與應(yīng)用(二)

本文名稱(chēng):詳述Linux系統(tǒng)中Apache配置與應(yīng)用(二)
瀏覽路徑:http://aaarwkj.com/article20/phocco.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供外貿(mào)網(wǎng)站建設(shè)、網(wǎng)站建設(shè)、商城網(wǎng)站、面包屑導(dǎo)航品牌網(wǎng)站設(shè)計(jì)、虛擬主機(jī)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

h5響應(yīng)式網(wǎng)站建設(shè)
婷婷网色偷偷亚洲男人| 欧美亚洲综合激情在线| 看看永久成人免费视频| 亚洲中文字幕乱码丝袜在线精品| 国产精品九九久久精品女同| 亚洲国产传媒在线观看| 亚洲熟女精品不卡一区二区| 亚洲综合国产中文字幕| 国产精品亚洲精品日韩在线| 九九99九九99九九精品在线观看| 人妻少妇精品一区毛二区| 久久国产三级久久久久久| 美味人妻手机在线观看| 精品视频在线观看传媒| 国产精品日韩一区视频| 欧美黄片视频在线免费看| 丰满少妇一区二区三区在线观看| 亚洲av毛片在线免费播放| 国内成人免费在线视频| 太爽了少妇高潮在线看片| 一本久道久久综合狠狠老| 在线播放亚洲一区二区三区| 日本福利一区二区三区| 亚洲精品香蕉久久情趣| 日韩精品国产一区二区在线| 日本一级特黄大片做受在线观看 | 亚洲激情视频久久精品| 日韩黄av在线免费观看| 午夜黄色福利在线观看| 日本中文有码视频在线观看| 精品欧美高清免费视频| 国产精品人成在线观看不卡| 欧美精品在线高清观看| 久久精品国产亚洲av高清一区| 国产三级国产精品国产国在线观看| 免费av男人天堂亚洲天堂| 欧美日韩亚洲1区2区| 欧美日韩一区二区午夜福利| 91精品大片免费在线观看| 91无人区一区二区三乱码| 国产精品白浆大屁股一区二区三|