0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

webサーバとアプリケーションサーバの違い

Posted at

WEBサーバとアプリケーションサーバの違い

今までわかった振りをしてきましたが、基礎から学び直す機会がありましたので、知識定着のためにまとめておきます。

WEBサーバとは

クライアントからのHTTPリクエストを受け取り、アプリケーションサーバーの処理が必要なリクエストは、アプリケーションサーバに転送する。
静的なコンテンツ(HTMLや画像)であれば、WEBサーバがレスポンスを返す。
「Apache HTTP Server」や「NGINX」などがある。

アプリケーションサーバとは

APサーバと略されることもある。Tomcat(Java)、(Apache(PHP)、)Unicorn(Ruby)などがある。
(PHPの場合は、ApcheがWEBサーバがAPサーバも兼ねている)
単体で使用されることはなく、WEBサーバから転送されたリクエストを、RubyやPHPなどのプログラムにより処理をして、レスポンスをWEBサーバに返す。

参考にしたサイト、書籍

https://anken-hyouban.com/blog/2020/01/12/application-server/
https://gihyo.jp/book/2010/978-4-7741-4235-7

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?