-
This request has been blocked; the content must be served over HTTPS
2020-12-15 11:46解决了,启动 docker 容器的的时候,有一个参数忘了从 HTTP 改成 HTTPS 了
server_scheme=https
-
This request has been blocked; the content must be served over HTTPS
2020-12-15 10:45感觉配置文件差不多,会不会是其他原因导致的
-
This request has been blocked; the content must be served over HTTPS
2020-12-15 10:44user root; #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; worker_rlimit_nofile 65535; events { worker_connections 10240; } http { include mime.types; default_type application/octet-stream; #access_log logs/access.log main; sendfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; client_header_buffer_size 512k; large_client_header_buffers 4 512k; proxy_read_timeout 240s; #gzip on; upstream backend { server localhost:8080; # Solo 监听端口 } server { #listen 80; listen 443 ssl; server_name www.huyaxing.site,huyaxing.site; # 博客域名 #ssl on; ssl_certificate cert/4917509_huyaxing.site.pem; ssl_certificate_key cert/4917509_huyaxing.site.key; ssl_session_timeout 5m; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE; ssl_prefer_server_ciphers on; access_log off; location / { proxy_pass http://backend$request_uri; proxy_set_header Host $http_host; #proxy_set_header Host $host:$server_port; proxy_set_header X-Real-IP $remote_addr; client_max_body_size 10m; } } server{ listen 80; listen [::]:80; server_name www.huyaing.site,huyaxing.site; rewrite ^(.*) https://$host$1 permanent; } #server { # listen 80; #监听的端口 # server_name weixin.huyaxing.site; #监听的域名 # location / { # proxy_redirect off; # proxy_set_header Host $host; # proxy_set_header X-Real-IP $remote_addr; # proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; # proxy_pass http://weixin.huyaxing.site:9980; #跳转的url和接口 # } # access_log logs/hp_access.log; #生成的日志,只需修改:jira_access.log,文件自动生成。 #} }
-
Solo 使用 docker 启动,报错 bind(..) failed: Address in use
2020-12-10 16:09我也很奇怪,刚才把镜像都删了,重新拉了一遍,还是不行
root 12970 11618 0 16:08 pts/0 00:00:00 grep --color=auto solo
-
Solo 使用 docker 启动,报错 bind(..) failed: Address in use
2020-12-10 16:03这些就是 docker 日志的所有信息了,我先用 docker 启动了,docker ps 可以看到,大概几秒钟之后就被停掉了