Иван Гладуш
Иван Гладуш

Reputation: 642

Does aws has alternative nginx?

I tried to find alternative of nginx on aws, and found only route 53. Is it the same service or no? Does aws has alternative nginx?

Upvotes: 2

Views: 4512

Answers (2)

jelares
jelares

Reputation: 1

Lambda @ Edge sitting in front of a Cloudfront distribution can replace many of the functionalities of Nginx

Upvotes: 0

John Rotenstein
John Rotenstein

Reputation: 269470

NGINX is a web server which can also be used as a reverse proxy, load balancer and HTTP cache (Wikipedia). It is software that runs on an operating system (eg Linux, Windows).

There is no equivalent provided by AWS. You can run NGINX on an Amazon EC2 instance.

The closest equivalents on AWS would be:

  • Using Amazon S3 to serve static web content
  • Using Elastic Load Balancer to distribute traffic to multiple Amazon EC2 instances
  • Using Amazon CloudFront to cache content in multiple geographic locations

Amazon Route 53 is a DNS service for resolving domain names, which is not base NGINX functionality (although NGINX can handle virtual hosts, which overlaps a bit with DNS).

Upvotes: 10

Related Questions