You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
``Hi, everyone.
I have a droplet that is running NPM and Bitnami-WordPress-Nginx.
I added a proxy with SSL, HTTPS scheme, and port 8443 of WordPress-Nginx container. But there is a problem with content, As far as I understand my theme has some HTTP-only content, and it couldn't load. it works without SSL. How I can solve this issue?
As far I understand something rewrite the link of content with https.
# ------------------------------------------------------------
# <myDomain>
# ------------------------------------------------------------
server {
set $forward_scheme https;
set $server "wordpress";
set $port 8443;
listen 80;
listen [::]:80;
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name <myDomain>;
# Let's Encrypt SSL
include conf.d/include/letsencrypt-acme-challenge.conf;
include conf.d/include/ssl-ciphers.conf;
ssl_certificate /etc/letsencrypt/live/npm-1/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/npm-1/privkey.pem;
# Force SSL
include conf.d/include/force-ssl.conf;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
proxy_http_version 1.1;
access_log /data/logs/proxy-host-3_access.log proxy;
error_log /data/logs/proxy-host-3_error.log warn;
location / {
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
proxy_http_version 1.1;
# Proxy!
include conf.d/include/proxy.conf;
}
# Custom
include /data/nginx/custom/server_proxy[.]conf;
}
The error from chrome
pn-lg3.jpg:1 Failed to load resource: net::ERR_CERT_COMMON_NAME_INVALID
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
``Hi, everyone.
I have a droplet that is running NPM and Bitnami-WordPress-Nginx.
I added a proxy with SSL, HTTPS scheme, and port 8443 of WordPress-Nginx container. But there is a problem with content, As far as I understand my theme has some HTTP-only content, and it couldn't load. it works without SSL. How I can solve this issue?
As far I understand something rewrite the link of content with https.
The error from chrome
pn-lg3.jpg: https://ione.wp1.zootemplate.com/wp-content/uploads/2018/08/pn-lg3.jpg
This link works only without https.
Beta Was this translation helpful? Give feedback.
All reactions