Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

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!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi Jason,
Thanks for your answer. I have a follow up question.
Which is the file to modify? (is it default) or the conf file pertaining to ccTLD (club.in)
I have screenshots that might help:
This is etc/nginx/sites-available directory: https://i.imgur.com/OUF2UIR.png
These are the conf files inside the ghost directory: https://i.imgur.com/gnKMKup.png
Thanks!
server {
listen 80
listen 443;
server_name blog.club.in;
location / {
return 301 https://blog.club.com$request_uri;
}
}
you can set the config from <jasonjpeters> directly to your nginx.conf innerline to section http {} like
...
server {
listen 80
listen 443;
server_name blog.club.in;
location / {
return 301 https://blog.club.com$request_uri;
}
}
...
}
please know that “…” dots are your other config parameters