Kibana version 7.14
Elastic version 7.14
Kibana loads properly and fully using WIFI networks. However, when using mobile networks, Kibana does not load. The loading appears to stop at the log-in screen. The log-in screen does not show.
The log shows this:
"GET / login?next=%2TTP/1.1" 200 29543 "-" "Mozilla/5.0 (iPhone: CPU iPhone ......
"GET /node_modules/@kbn/ui-framwork/dist/kui_light.css HTTP/1.1" 304 641 "https://kibana.example.com/loging?next=%2Fapp%2Fhome" ...
A reverse proxy runs Elasticsearch and Kibana on the same machine.
Here is what has been tried to load Kibana to completion using mobile networks
<IfModule mod_deflate>
#AddOutputFilterByType DEFLATE application/javascript
#AddOutputFilterByType DEFLATE application/rss+xml
#AddOutputFilterByType DEFLATE application/vnd.ms-fontobject
#AddOutputFilterByType DEFLATE application/x-font
#AddOutputFilterByType DEFLATE application/x-font-opentype
#AddOutputFilterByType DEFLATE application/x-font-otf
#AddOutputFilterByType DEFLATE application/x-font-truetype
#AddOutputFilterByType DEFLATE application/x-font-ttf
#AddOutputFilterByType DEFLATE application/x-javascript
#AddOutputFilterByType DEFLATE application/xhtml+xml
#AddOutputFilterByType DEFLATE application/xml
#AddOutputFilterByType DEFLATE font/opentype
#AddOutputFilterByType DEFLATE font/otf
#AddOutputFilterByType DEFLATE font/ttf
#AddOutputFilterByType DEFLATE image/svg+xml
#AddOutputFilterByType DEFLATE image/x-icon
#AddOutputFilterByType DEFLATE text/css
#AddOutputFilterByType DEFLATE text/html
#AddOutputFilterByType DEFLATE text/javascript
#AddOutputFilterByType DEFLATE text/plain
#AddOutputFilterByType DEFLATE text/xml
</IfModule>
<IfModule mpm_event_module>
StartServers 2
MaxClients 150
MinSpareThreads 25
MaxSpareThreads 75
ThreadLimit 64
ThreadsPerChild 25
MaxRequestsPerChild 0
KeepAlive On
#MaxKeepAliveRequests 500
#KeepAliveTimeout 3
#ThreadsPerChild 25
#MaxRequestWorkers 400
#StartServers 16
#MinSpareThreads 200
#MaxSpareThreads 400
#MaxConnectionsPerChild 100000
</IfModule>
</IfModule>
<IfModule mod_cache_disk.c >
# Apache Cache
# CacheQuickHandler off
# ---------------------
# In this case, each request will reach Apache server
# and only then hit the cache. This is useful in case
# you want to do some kind of authentication before sending response.
#
# CacheQuickHandler on
# --------------------
# Cache will be placed before the server. In this case, the request
# will first hit the cache. If there is no/expired cache entry,
# then the request will be sent to server.
CacheQuickHandler off
CacheLock on
CacheLockPath /tmp/mod_cache-lock
CacheLockMaxAge 5
CacheIgnoreHeaders Set-Cookie
CacheRoot /var/cache/apache2/mod_cache_disk
<Location />
CacheEnable disk
CacheHeader on
CacheDefaultExpire 800
CacheMaxExpire 64000
CacheIgnoreNoLastMod On
ExpiresActive on
ExpiresDefault A300
CacheReadSize 102400
CacheReadTime 1000
</Location>
</IfModule>