我在这里向您咨询是因为我遇到了重大问题。如标题所示,iPhone无法连接到我服务器上的站点。当我说iPhone时,我并不是在谈论Safari。我说的是iPhone。我对这个品牌的几个拥有者(从4s到X)进行了测试。无论是使用Safari,Chrome还是Firefox,都无法连接。
奇怪的是,在给定站点上,他们无法连接到该站点,但是在我将DNS服务器更改为通过Cloudflare之后,再也没有问题了。
关于配置,我在带有Apache 2.4.25和php-fpm7.2.17的反向代理的Nginx 1.10.3下处于Debian Stretch。
Nginx负责分发静态元素,Apache负责分发php。当我使用Android手机或PC时,无论是使用Firefox还是Chrome,都没有问题。
为您提供信息,即使在HTML / CSS / JS网站上也无法正常工作。
您知道什么可能导致此问题吗?如果您需要有关服务器配置的更多详细信息,请不要犹豫。
谢谢!
PS:我已经在SuperUser上问过,该问题已关闭并移至AskDifferent,因为该问题“超出范围”。
编辑:有问题的站点不在日志中。 对于Nginx配置:
(c, d, a, b, id)
虚拟主机:
user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;
events {
worker_connections 4096;
multi_accept on;
}
http {
##
# Basic Settings
##
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
server_tokens off;
more_set_headers 'Server: Ninja Server';
# server_names_hash_bucket_size 64;
# server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
##
# SSL Settings
##
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
ssl_prefer_server_ciphers on;
##
# Logging Settings
##
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
##
# Gzip Settings
##
gzip on;
gzip_disable "msie6";
gzip_vary on;
gzip_proxied any;
gzip_comp_level 6;
gzip_buffers 16 8k;
gzip_http_version 1.1;
gzip_types application/atom+xml application/javascript application/json application/ld+json application/manifes$
add_header Cache-Control public;
##
# Virtual Host Configs
##
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}