I have a website running with nginx (funides.com) I want this subdomain “observatorio.funides.com” point to “funides.kingdatasolutions.com”.
What can I do? The domain funides.com is hosted in nginx.
Regards
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Point observatorio.funides.com to your droplet and add the server block below to your NGINX configuration.
server {
listen 80;
listen 443;
server_name observatorio.funides.com;
location / {
return 301 https://funides.kingdatasolutions.com$request_uri;
}
}
Adjust this part of the entry return 301 https://f... to reflect if the destination is using SSL or not.
You could add a CNAME entry to observatorio.* that points to funides.kingdatasolutions.com
On the destination server (funides.kingdatasolutions.com) you will need to add an entry for observatorio.funides.com to handle it properly.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.