Question
Cannot connect to Jetpack ( SIte Inaccessible )
Hey Guys,
My name is Frans W.
I am a newbie here.
I have issued after i followed the tutorial.
Finally, i have reached the wordpress now.
But while i want to install Jetpack, there are any issue blocked me.
I can install it, but when i want to connect it, the top is showing error message:
Your website needs to be publicly accessible to use Jetpack: site_inaccessible
Error Details: The Jetpack server was unable to communicate with your site https://tenpotech.com [IXR -32300: transport error: httprequestfailed SSL certificate problem: unable to get local issuer certificate]
My Following Block is like that,
server {
listen 443 defaultserver;
listen [::]:443 defaultserver ipv6only=on;
root /var/www/web/html;
index index.php index.html index.htm;
server_name tenpotech.com www.tenpotech.com;
ssl on;
ssl_certificate /var/www/web/cert/tenpotech.com.crt;
ssl_certificate_key /var/www/web/cert/tenpotech.com.key;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_ciphers 'EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH';
location / {
# try_files $uri $uri/ =404;
try_files $uri $uri/ /index.php?q=$uri&$args;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
}
server {
listen 80;
listen [::]:80;
servername tenpotech.com www.tenpotech.com;
return 301 https://$servername$request_uri;
}
Am i missing something?
Any advice for that?
Need your help.
Thank you,
Frans W
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×