Kirk Well-known member Aug 10, 2017 #1 Howdy , So I have 2 domains. 1 that doesn't have hosting and 1 that does. I have a cname to direct www and none www to point to the domain with hosting. But when i try to go to the domain it gives me a 404 error ngix. Am i missing a configuration step? -Kirk
Howdy , So I have 2 domains. 1 that doesn't have hosting and 1 that does. I have a cname to direct www and none www to point to the domain with hosting. But when i try to go to the domain it gives me a 404 error ngix. Am i missing a configuration step? -Kirk
TPerry Well-known member Aug 17, 2017 #3 You have to make sure you include that domain name in your nginx vhost server stanza (for others that may wonder what was probably wrong). Code: server_name thepipestand.com www.thepipestand.com whateveranotherdomain.com www.whateveranotherdomain.com; and then restart the nginx service.
You have to make sure you include that domain name in your nginx vhost server stanza (for others that may wonder what was probably wrong). Code: server_name thepipestand.com www.thepipestand.com whateveranotherdomain.com www.whateveranotherdomain.com; and then restart the nginx service.