DEV Community

Cover image for Deploy / Host your React App with cPanel in Under 5 Minutes
crishanks
crishanks

Posted on • Edited on

Deploy / Host your React App with cPanel in Under 5 Minutes

Stay hydrated out there

Diving Right In

While working on a personal project called Punchstarter, a Kickstarter clone app, I struggled to find any good documentation on how to host a custom app on my own domain with cPanel. I hope this will serve useful to many.

1. Purchase a Domain and Hosting

To host a website, you'll need to purchase a registered domain name and a hosting plan from a hosting provider (both provided through numerous sources like Namecheap or Godaddy). If you buy them together, these providers will typically point the domain to your hosting server automatically. If not, this tutorial can help you out.

2. Add the Homepage to your package.json File

Next, open up your React App. Open up your package.json file and add a "homepage" attribute like so:

package.json

The format should be "homepage": "http://yourdomainname.whatever"

3. Create the build File

In your application's root directory, run yarn install to install the updated dependencies. Once this has finished, the next command you'll run is yarn build (npm install and npm build work, too).

You'll notice this creates a new directory in your project called build. The build folder is essentially a super-compressed version of your program that has everything your browser needs to identify and run your app.

build directory

4. Connect to cPanel

Let's head over to your hosting provider (Namecheap, Godaddy, Bluehost etc.). Once you've logged in, navigate to the cPanel manager for your domain. Typically there is a dropdown menu of some kind that says "Manage" which will direct you to cPanel.

hosting manager

Your cPanel manager should look something like this:

cPanel manager

Navigate into the File Manager. There you'll find a dropdown list of directories. The one we're interested in is public_html. Open that up.

public_html

5. Add the Build File Contents to public_html

Navigate to the build file in your app's root directory. Open it up and select all the contents inside the build file. If you upload the entire build file itself, the process will not work.

build directory

Once you've copied all the contents inside the build file, upload them into public_html.

6. Create and Upload the .htaccess File

In order for the routes to work in your React app, you need to add a .htaccess file. In the public_html folder, at the same level as the build file contents, add a new file and name it .htaccess.

Edit the file and insert the following boilerplate information:



<IfModule mod_rewrite.c>

  RewriteEngine On
  RewriteBase /
  RewriteRule ^index\.html$ - [L]
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-l
  RewriteRule . /index.html [L]

</IfModule>


Enter fullscreen mode Exit fullscreen mode

.htaccess

Save the file.

You're Super Done.

Stay hydrated out there

That's it! Navigate to your domain address in the browser and you should see your fully functioning web app.

But you know what else is nice... A shiny new mechanical keyboard. Click that if you're interested in a good one. Or click this for another cool option.

Or perhaps you have a good one and you want to spruce it up a bit (you know I did).

A Note on FileZilla

I know a lot of folks like to use FileZilla to deploy and host their custom web apps. I found it to be unnecessary for my purposes, but should you choose, you can:

  1. Download and run FileZilla
  2. Grab your domain's ip address -- or ask your hosting provider
  3. Input the domain ip, cPanel login, cPanel username, and host port (i.e. 21. Your hosting provider should provide that info for you) into the top bar
  4. Click QuickConnect
  5. Once connected, navigate to, select, and copy the contents inside the build file (in the left-side pane showing your computer's directories)
  6. Navigate to the public_html directory in the cPanel pane on the right-hand side. Paste the contents of the build file into public_html
  7. Create the .htaccess file with the same information listed above

Latest comments (87)

Collapse
 
saifur_rohman_028c9b9ea0a profile image
Saifur Rohman

How about to make REST API?

Collapse
 
emma_watson profile image
Emma Watson

Great guide for deploying React apps with cPanel! While cPanel is widely used, have you considered trying CyberPanel? It’s a powerful alternative that offers features like OpenLiteSpeed integration for faster performance, built-in support for Docker, automatic SSL, and a much more user-friendly interface. Plus, CyberPanel has a free version, which is a great advantage over cPanel's pricing.

Collapse
 
imadbenmadi profile image
imad benmadi

bro how to create a new subdomain and put inside another react ap , I tried it , but when I access to the new page after refreshing the page I got 404

Collapse
 
lucafxg profile image
lucafxg

I need help, I can't get my application to work. I follow all the steps, but I keep getting the following error 503.

Collapse
 
khaled17 profile image
khaled-17

that post is very grat
thank you for help pro

Collapse
 
hfzrmd profile image
Hafiz Ramadhan

Thank you!

Collapse
 
johnnshaibu profile image
JOHN Shaibu

thank you very much you just saved me from lot of stress

Collapse
 
somtookaforr profile image
Somtochukwu Okafor

Thank you for this very useful article.

Collapse
 
ndotie profile image
ndotie

Thanks master, this is useful hundreds and millions times, thanks!!

Collapse
 
chinazamax profile image
chinaza-max

thanks for the toturial . I have a react app running on cpanel with the routers working fine but any time i refresh i get the error "Sorry, this page does not exist"

Some comments may only be visible to logged-in visitors. Sign in to view all comments.