0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Qiita全国学生対抗戦Advent Calendar 2023

Day 3

ApacheでProxy 今更たけど知ってちょっと感動?

Posted at

はじめに

 ウェブサイト制作しているときに、プロキシについて気になって調べました。それが私の中でちょびっと感動したので記事にしようと思います。

設定

 Webアプリなどを作ったときに、いちいちポートを指定してアクセスするのは面倒なので、Webサーバーの特定のディレクトリにプロキシする設定をしました。SSL化している場合なら、default-ssl.confの適当なバーチャルホストに以下のような設定を追加します。

<VirtualHost www.example.net:443>
+   ProxyPass /proxy_example http://example.com:8080
+   ProxyPassReverse /proxy_example http://example.com:8080
</VirtualHost>

 /proxy_exampleがプロキシ先のディレクトリーです。http://example.com:8080がプロキシされる元のアドレスです。

おわりに

 新しいことを、また一つ知ることができました。これからも自分の知識に磨きをかけていきたいと思います。また、以下のサイトを参考にさせていただきました。

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?