从本地网络上的虚拟主机获取数据需要10秒以上


0

我有一个基于PHP-MySQL的单页面应用程序(使用Angular 6),在本地网络上工作。

我们设置etc/hosts如下:

#127.0.0.1 localhost
#::1 localhost

192.168.0.217   dev.local
::1 dev.local

#127.0.0.1  angular.local
#::1    angular.local

127.0.0.1 localhost
::1 localhost

192.168.0.217   angular.local
::1 angular.local

angular.local是对用户打开的窗口和应用程序dev.local来访问PHP脚本登录,添加,编辑,...

httpd-vhosts如下:

# Virtual Hosts
#
<VirtualHost *:80>
  ServerName localhost
  ServerAlias localhost
  DocumentRoot "${INSTALL_DIR}/www"
  <Directory "${INSTALL_DIR}/www/">
    Options +Indexes +Includes +FollowSymLinks +MultiViews
    AllowOverride All
    #Require local
    Allow from 192.168.10.0
    Allow from 192.168.0.217
Require all granted
  </Directory>
</VirtualHost>


#dev.local
<VirtualHost *:80>

    ServerAdmin it@m.org
    DocumentRoot "c:/wamp64/www/dev"
    ServerName dev.local    
    ServerAlias www.dev.local

    <Directory  "c:/wamp64/www/dev/">   
        AllowOverride All
        Require ip 192.168.0
        Require ip 192.168.1    
        Require ip 192.168.10
        Require all granted     
                Allow from all
    </Directory>
</VirtualHost>


#
<VirtualHost *:80>
    ServerName angular.local
    DocumentRoot "c:/wamp64/www/angular/"
    ServerAlias angular.local
    <Directory  "c:/wamp64/www/angular/">
        #Options +Indexes +Includes +FollowSymLinks +MultiViews
        AllowOverride All
        Require ip 192.168
        Require all granted
        Allow from all
    </Directory>
</VirtualHost>

在服务器端,运行应用程序时,获取大约11000条记录1.11 seconds

在此输入图像描述

在用户计算机上,我们允许他通过将etc/hosts文件更改为:来访问应用程序:

#127.0.0.1  host1
#::1    host1
#127.0.0.1 aff.local
#127.0.0.1 primero.test
#127.0.0.1 localhost
#::1 localhost
127.0.0.1 dev.local

192.168.0.217   angular.local
192.168.0.217 dev.local
::1 angular.local

获取11000+记录的请求花13.25 seconds了很多时间:

在此输入图像描述

我做了所有写在这个答案中但仍然遇到同样问题的东西,并在一些计算机上完成了25 seconds

编辑

在本说的链接,我改变了所有的AllowOverride AllAllowOverride None

文件说:

然后Apache将尝试打开/.htaccess,/ www.htaccess和/www/htdocs/.htaccess。解决方案类似于之前的Options FollowSymLinks案例。为获得最高性能,请在文件系统中的所有位置使用AllowOverride None。

但仍然有同样的问题。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.