All Questions

Tagged with
Filter by
Sorted by
Tagged with
0 votes
1 answer
785 views

Acessing my site using www is not working using AWS Route 53 and NGINX

My site is up and running and can be found on the Internet by typing [domain].com address in the browser. When I try to access it using www.[domain].com, it return an error (not found). I'm using ...
Mendes's user avatar
  • 131
0 votes
1 answer
909 views

Why is Route53 registered domain not able resolve EC2 IP while I can access the IP without domain?

This is what I have right now: A domain which is registered with Route53. This domain resides with Route53 only. An nginx listening on port 80 which is then running on EC2 instance. I can view the ...
Santosh Kumar's user avatar
0 votes
1 answer
693 views

Should I use nginx or route53 for redirect?

What should I use for subdomain redirection? I want to create webmail.mywebsite.com and then redirect it to gmail.com I try to do that with nginx server { server_name webmail.mywebsite.com 301 ...
Maw321's user avatar
  • 1
3 votes
3 answers
1k views

How to set Amazon Route53 for multiple distinct domains on the same IP address?

I have two different domain names with completely different websites. This is how my nginx configuration looks like: server { listen 80; server_name domainnameone.com; location / { ...
Dong's user avatar
  • 135
1 vote
0 answers
270 views

How to add subdomain with nginx and route 53?

I have let's say example.com and it's running on EC2 instance with nginx and i need to run api.example.com on the same ip of the EC2 instance as example.com i tried to create record set in route 53 ...
jerichofs's user avatar
0 votes
0 answers
339 views

Redirect for non-www to www not working for https

I am attempting to redirect all non-www requests to www with my nginx server, but despite successfully redirecting the http request (http://example.com to https://www.example.com), the https request ...
cphill's user avatar
  • 197
0 votes
1 answer
501 views

Nginx Non-WWW Redirect to WWW Record Issue

I am running Nginx via an AWS ElasticBeanstalk application and have Https enabled through a load-balancer and forced Https redirect for www., but it appears that there is either an issue with my ...
cphill's user avatar
  • 197
-1 votes
1 answer
1k views

DNS can't be reached updating name server in Route 53 [closed]

After upgrading my instance type in EC2, I have (stupidly) deleted and recreated a new hosted zone for my domain, and put the new instance public IP. I have followed the following steps: created ...
Xenophiliac's user avatar
1 vote
2 answers
252 views

Two domains, same NS and Elastic IP redirect [closed]

I have two domains; example.com and example-x.com - the former is the main domain all traffic should go to. Both domains are pointing to the same name servers and each have individual hosted zones in ...
hybrid9's user avatar
  • 123
1 vote
2 answers
816 views

Nginx : AWS Route 53 : ELB : naked redirect

Setup I have two rails app instances running in Opsworks Layer. I am using Route 53 and an ELB to route traffic to my Layer. Objective To redirect naked domain traffic to my www domain. chicken.com ...
mconlin's user avatar
  • 123
-2 votes
1 answer
252 views

Nginx server_name is set to mydomain.com, so why is www.mydomain.com getting served too? [duplicate]

I have my Nginx conf set up as follows: server { listen 443 ssl; server_name mydomain.com; ... } When I load https://mydomain.com, the site loads fine. But when I load https://www....
Lorenz Forvang's user avatar
0 votes
0 answers
75 views

No longer can get nginx.conf to respect my redirect rules

I want to redirect all sites and subdomains to one https domain name. I'll use https://my-site.com as an example. Previously I had all the redirection working with the following code: server { ...
tim peterson's user avatar
0 votes
0 answers
102 views

"Recursive" Wildcard DNS for Amazon Route 53 [duplicate]

The title of the question might be misleading because I'm not an expert and I'm trying to learn the proper terminology. That being said, I'm wondering if it's possible to setup a wildcard DNS record ...
Brian's user avatar
  • 109
0 votes
1 answer
548 views

AWS route53 forwarding

Essentially, I need to know how to point one URL/folder to a web server and a different URL/folder to an EC2 app server. I'm trying to setup a SAAS with the following URL configuration. www.mysite....
Littlebob's user avatar