Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Deploy Gatsby on Godaddy Sever

Tags:

reactjs

gatsby

Can I deploy Gatsby static pages on Godaddy server? I am not sure if that's possible.

like image 635
Hitesh Sahu Avatar asked Nov 19 '25 20:11

Hitesh Sahu


2 Answers

If you have SSH/SFTP access to your server on GoDaddy (which you should), you can use any CI tool to deploy your Gatsby site.

Tools you can use are for example:

  • Buddy
  • CircleCI

Another option is to use a hoster specialized on static pages like github pages or netlify.

like image 89
Thomas Avatar answered Nov 22 '25 14:11

Thomas


If you want to deploy your static website on a normal server without CI, you can run gatsby serve -p 80 -H <your private IP address>. Replace with the IP address you get from ifconfig on linux or ipconfig on windows.

like image 31
Robbie Cook Avatar answered Nov 22 '25 15:11

Robbie Cook