gpt4 book ai didi

Docker nginx/traefik 301 在本地主机上将 http 重定向到 https

转载 作者:行者123 更新时间:2023-12-04 07:46:57 28 4
gpt4 key购买 nike

这是对 Turn off https in Docker 的跟进更多信息。我还是没弄明白。

我在 Docker slack 组中询问,他们确信它来自 nginx 或 traefik 配置。

在 Firefox 中有一个 SSL_ERROR_UNRECOGNIZED_NAME_ALERT 错误,在 Chrome 中是类似的 ERR_SSL_UNRECOGNIZED_NAME_ALERT。我没有通过搜索找到太多关于这两者的信息。

我的 nginx 配置:

user                                    nginx;
daemon off;
worker_processes auto;
error_log /proc/self/fd/2 debug;

events {
worker_connections 1024;
multi_accept on;
}

http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
fastcgi_buffers 16 32k;
fastcgi_buffer_size 32k;
fastcgi_intercept_errors on;
fastcgi_read_timeout 900;
include fastcgi_params;
access_log /proc/self/fd/1;
port_in_redirect off;
send_timeout 600;
sendfile on;
client_body_timeout 600;
client_header_timeout 600;
client_max_body_size 256M;
client_body_buffer_size 16K;
client_header_buffer_size 4K;
large_client_header_buffers 8 16K;
keepalive_timeout 60;
keepalive_requests 100;
reset_timedout_connection off;
tcp_nodelay on;
tcp_nopush on;
server_tokens off;
upload_progress uploads 1m;

gzip on;
gzip_buffers 16 8k;
gzip_comp_level 2;
gzip_http_version 1.1;
gzip_min_length 20;
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript image/x-icon application/vnd.ms-fonto
gzip_vary on;
gzip_proxied any;
gzip_disable msie6;

add_header X-XSS-Protection '1; mode=block';
add_header X-Frame-Options SAMEORIGIN;
add_header X-Content-Type-Options nosniff;

map $http_x_forwarded_proto $fastcgi_https {
default $https;
http '';
https on;
}

map $uri $no_slash_uri {
~^/(?<no_slash>.*)$ $no_slash;
}


upstream backend {
server php:9000;
}


include conf.d/*.conf;
}

我的 nginx.conf.default:

#user  nobody;
worker_processes 1;

#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;

#pid logs/nginx.pid;


events {
worker_connections 1024;
}


http {
include mime.types;
default_type application/octet-stream;

#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';

#access_log logs/access.log main;

sendfile on;
#tcp_nopush on;

#keepalive_timeout 0;
keepalive_timeout 65;

#gzip on;

server {
listen 80;
server_name localhost;

#charset koi8-r;

#access_log logs/host.access.log main;

location / {
root html;
index index.html index.htm;
}

#error_page 404 /404.html;

# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}

# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}

# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}


# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;

# location / {
# root html;
# index index.html index.htm;
# }
#}


# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;

# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;

# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;

# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;

# location / {
# root html;
# index index.html index.htm;
# }
#}

}

我的 docker-compose.yml 与上一个问题没有变化。

我一直在寻找类似 traefik 配置的东西,但找不到任何东西。

到目前为止我尝试过的事情:

  • map $http_x_forwarded_proto $fastcgi_https 内部交换内容,即 default $http; HTTP 上; https '';
  • 删除整个 map block
  • 删除 docker-compose.yml 第 140 行中对 https 的引用
  • 从 docker-compose.yml 中删除第 143 行
  • 从 docker-compose.yml 中删除第 147 行
  • 为本地主机创建自签名证书
  • 麻布和骨灰

我真的很茫然,感谢任何帮助。

最佳答案

经过 OP 的更多测试和其他用户的评论:重定向(HTTP 到 HTTPS)似乎是在 Nginx 处理请求之后发生的。

OP 还使用单个 index.html 文件进行了测试,并且没有重定向到 HTTPS:确认重定向来自 PHP(或者至少不是来自 Nginx)。

接下来的步骤是查看 Drupal 配置和/或 htaccess 配置。 OP 更改了一些 Drupal 配置(关于重定向),并成功获得了仅使用 HTTP 的 drupal 设置页面。

在这种情况下,最好始终尝试查明问题的来源:

  • 使您的 Nginx 配置最少:简单的 index.html
  • 定期清除浏览器缓存:它们有时会缓存重定向
  • 检查/删除 htaccess 以查看行为是否改变
  • 最后,如果 Nginx 没有任何问题,并且 htaccess 似乎不是问题所在:它主要是“之后”,所以问题可能来自“Nginx 向谁发送请求”
  • 来自“大型”框架/CMS,例如 Drupal、Woocommerce、Laravel...重定向通常可以从配置文件或数据库设置中“轻松”处理。
  • 当您有自定义代码处理重定向时:它需要调试

关于Docker nginx/traefik 301 在本地主机上将 http 重定向到 https,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67160206/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com