My Odoo -网站在www.example.com上进行管理odoo.sh(它提供了一个基本的letsEncryptSSL证书)。当你浏览我的网站时:http://www.mywebsite.com,则不会重定向到相应的SSL页面:https://www.mywebsite.com
在www.example.com中odoo.sh,我无法访问NGINX配置。应该重新访问Nginx配置,以便将所有对http://www.---地址的请求转换为https://www.---等效地址。
如何访问Nginx并在www.example.com中进行此类配置odoo.sh?
server {
listen 80;
rewrite ^(.*) https://$host$1 permanent;
}
或者:
if ($scheme = "http") {
return 301 https://$server_name$request_uri;
}
1条答案
按热度按时间iq3niunx1#
你只需要将下面的代码添加到你的nginx配置中。