Nginx+ лак (SSL-завершение Nginx) показывает 502 неверных шлюза (сайт не использует WordPress)

Я настроил nginx как терминатор SSL для лака в соответствии с этим руководством: https://www.linode.com/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/

Мне нужно перенаправление http на https, так как я хочу, чтобы мой сайт был доступен только через https.

конфиги моего сайта nginx:

Конфигурация HTTP сайта nginx:

    server {
listen  8080;
listen  [::]:8080;
server_name  www.arcadesite.io;
return       301 http://arcadesite.io$request_uri;
}
server {
listen 8080;l
listen [::]:8080;
server_name  arcadesite.io;
root /var/www/html;
port_in_redirect off;
index index.php;
location / {
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
   include fastcgi_params;
   fastcgi_index index.php;
   fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
   fastcgi_pass unix:/var/run/php7.2-fpm.sock;
   }
error_log /var/www/html/error.log notice;
}

Мой конфиг HTTPS:

server {
listen  443 ssl;
listen  [::]:443 ssl;
server_name  arcadesite.io;
port_in_redirect off;
ssl                  on;
ssl_certificate /etc/letsencrypt/live/arcadesite.io/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/arcadesite.io/privkey.pem; # managed by Certbot
ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3;
ssl_ciphers ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+3DES:DH+3DES:RSA+AESGCM:RSA+AES:RSA+3DES:!aNULL:!MD5:!DSS;
ssl_prefer_server_ciphers   on;
ssl_session_cache   shared:SSL:20m;
ssl_session_timeout 60m;
add_header Strict-Transport-Security "max-age=31536000";
add_header X-Content-Type-Options nosniff;
location / {
 proxy_pass http://127.0.0.1:80;
 proxy_set_header Host $http_host;
 proxy_set_header X-Forwarded-Host $http_host;
 proxy_set_header X-Real-IP $remote_addr;
 proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
 proxy_set_header X-Forwarded-Proto https;
 proxy_set_header HTTPS "on";

 access_log /var/www/html/access.log;
 error_log  /var/www/html/error.log notice;
 }
}
server {
listen 8080;
listen [::]:8080;
server_name  arcadesite.io;
root /var/www/html;
index index.php;
port_in_redirect off;
location / {
  try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
   try_files $uri =404;
   fastcgi_split_path_info ^(.+\.php)(/.+)$;
   include fastcgi_params;
   fastcgi_index index.php;
   fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
   fastcgi_param HTTPS on;
   fastcgi_pass unix:/var/run/php7.2-fpm.sock;
   }
}

Но при посещении моего сайта, это выдает ошибку 502. Пожалуйста помоги

Примечание: это НЕ WordPress сайт

0 ответов

Другие вопросы по тегам