Wordpress inside docker container behind nginx proxy with ssl
问题 I alm facing a problem on my server configuration, and I can't figure out what am I doing wrong. So I have a nginx proxy like this : server { listen *:443 ssl; ssl_certificate /root/software/keys/mywebsite.keys/mywebsite.crt; ssl_certificate_key /root/software/keys/mywebsite.keys/mywebsite.key; server_name www.mywebsite.com mywebsite.com; access_log /var/log/nginx/mywebsite.access.log; error_log /var/log/nginx/mywebsite.error.log; root /srv/new-website; index index.html index.htm index.php;