dns/domain/https issue
Posted: Fri Aug 16, 2019 3:04 pm
I am currently trying to enable SSL on my hosting(on my pi) and im using NGINX.
my configuration looks like this.
when i view the site it says the connection is not secure.
I followed this guide to help set up https/TLS certificates...https://pimylifeup.com/raspberry-pi-ssl-lets-encrypt/
Yet it still shows unsecure. I was under the presumption that it should be in green as in validated.
Could someone help assist in what im doing wrong?
my configuration looks like this.
Code: Select all
server {
listen 80;
listen 443 ssl default_server;
listen [::]:443 ssl default_server ;
root /home/web/wordpress/;
index index.php;
server_name 192.168.0.4 [domain].ca www.[domain].ca;
ssl_certificate /etc/letsencrypt/live/[domain]/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/[domain]/privkey.pem;
access_log /home/web/wordpress/access.log;
error_log /home/web/wordpress/error.log notice;
location / {
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
}
}
I followed this guide to help set up https/TLS certificates...https://pimylifeup.com/raspberry-pi-ssl-lets-encrypt/
Yet it still shows unsecure. I was under the presumption that it should be in green as in validated.
Could someone help assist in what im doing wrong?