Nginx配置为重定向http://www.到https://www.在Odoo.sh?

s5a0g9ez  于 2023-05-16  发布在  Nginx
关注(0)|答案(1)|浏览(169)

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;
  }
iq3niunx

iq3niunx1#

你只需要将下面的代码添加到你的nginx配置中。

server{
  listen 80;
  server_name www.mywebsite.example mydomain.example;
  return 301 https://$server_name$request_uri;
}

相关问题