1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Qiita100万記事感謝祭!記事投稿キャンペーン開催のお知らせ

【備忘録】リバースプロキシ配下のwordpressをssl対応させるのに時間かかった話(apache) ※テーマのカスタム真っ白な人は関係あるかもしれません。

Last updated at Posted at 2025-01-12

結論

/etc/apache2/apache2.conf

SetEnvIf X-Forwarded-Proto https HTTPS=on

を一番下に書くだけ。

環境確認

OS:ubuntu24.04
リバースプロキシ:zoraxy
apache
wordpress

まず最初に何があったのか

wordpressを使用してたのですが、
mixed contentsという
httpとhttpsのコンテンツが混在する状態になりました。
そのせいでcssやらjsやらがchrome等によるブラウザで危険とされ読み込まれなくなってしまい、色々崩壊することがありました。

原因がわかったなら対策対策!

最初はいろんな情報が錯乱しまして、

SSL Insecure Content Fixer

というプラグインで解決しました。
ただそんなの入れなくても普通はどうにかなるので調べたところ、

/etc/apache2/apache2.conf

SetEnvIf X-Forwarded-Proto https HTTPS=on

を一番下に書くといいという話を見つけました。

参照:https://blog.code4u.org/archives/1550

やってみたら解決した感じです。

最後に

この記事で一人でも解決した人が増えたら嬉しいです。

参照

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?