Web not working after ssl installing

more like this:

# Default server configuration
#
server {
    server_name purplenode.lv;

    root /var/www/html;
    index index.php index.html index.htm;
    charset utf-8;

    location / {
        try_files $uri $uri/ /index.php?$query_string =404;
    }#location

    location = /favicon.ico { access_log off; log_not_found off; }
    location = /robots.txt  { access_log off; log_not_found off; }

    access_log off;

    # allow larger file uploads and longer script runtimes
    client_max_body_size 100m;
    client_body_timeout 120s;

    sendfile off;

    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/run/php/php7.2-fpm.sock;
        fastcgi_index index.php;
        include fastcgi_params;
        fastcgi_param PHP_VALUE "upload_max_filesize = 100M \n post_max_size=100M";
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param HTTP_PROXY "";
        fastcgi_intercept_errors off;
        fastcgi_buffer_size 16k;
        fastcgi_buffers 4 16k;
        fastcgi_connect_timeout 300;
        fastcgi_send_timeout 300;
        fastcgi_read_timeout 300;
    }#location

    location ~ /\.ht {
        deny all;
    }#location

    listen 443 ssl; # managed by Certbot
    listen [::]:443 ssl; # ? ? ? IF YOU HAVE IPv6
    ssl_certificate /etc/letsencrypt/live/purplenode.lv/fullchain.pem; # managed by Certbot
    ssl_certificate_key /etc/letsencrypt/live/purplenode.lv/privkey.pem; # managed by Certbot
    include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
    ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}#server

server {
   listen 443;
   listen [::]:443;

   server_name purplenode.lv;

   root /var/www/html;
   index index.php;

   location / {
       try_files $uri $uri/ =404;
   }#location
}#server

server {
   if ($host = purplenode.lv) {
       return 301 https://$host$request_uri;
   } # managed by Certbot

   listen 443;
   server_name purplenode.lv;
   return 404; # managed by Certbot
}#server

server {
   if ($host = purplenode.lv) {
       return 301 https://$host$request_uri;
   } # managed by Certbot
   listen 80;
   server_name purplenode.lv;
   return 404; # managed by Certbot
}#server
1 Like