Search code examples
amazon-web-servicesnginxcloud

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?


Solution

  • 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).