콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
4 답글
8044 화면

In Odoo 16

Here the website has dummy url
Need help to solve this
Mixed Content: The page at 'https://abc.com/web#action=450&cids=1&menu_id=293' was loaded over HTTPS, but requested an insecure frame 'http://abc.com/'. This request has been blocked; the content must be served over HTTPS.

Due to this my website page is not loaded.
Gives me blank page means block the content of site.

아바타
취소

In your nginx conf file add this line inside "location /"

proxy_set_header X-Forwarded-Host $host;

베스트 답변

Thak you Dayli Suarez, add proxy_mode = True to odoo.conf file helps me. Thx.

아바타
취소
작성자 베스트 답변

Issue is resolved within short time apology to late disclose,
but the problem is SSL configration issue.
Thank you ...

아바타
취소
베스트 답변

Hi,

Please add the below line inside your nginx file . you need to add this inside the location
proxy_set_header X-Forwarded-Proto https;

example
location /longpolling {
                proxy_connect_timeout   3600;
                proxy_read_timeout      3600;
                proxy_send_timeout      3600;
                send_timeout            3600;
                proxy_set_header X-Forwarded-Proto https;
                proxy_pass http://127.0.0.1:8072;
        }

After adding it , save the file and restart nginx service


Hope it helps

아바타
취소
베스트 답변

In Odoo.conf file, set proxy_mode = True

That's solved my problem.

아바타
취소
작성자

Thank you Dayli but it might not a proxy issue and also try it.

관련 게시물 답글 화면 활동
1
8월 23
2168
1
5월 25
1312
0
4월 25
488
1
6월 24
3254
1
5월 24
2371