Skip to content

Instantly share code, notes, and snippets.

@yekowele
Forked from Bodom78/whm-change-document-root.md
Last active March 19, 2019 10:56
Show Gist options
  • Save yekowele/841f5021c53a3c931fdafba7a74087fd to your computer and use it in GitHub Desktop.
Save yekowele/841f5021c53a3c931fdafba7a74087fd to your computer and use it in GitHub Desktop.
WHM/cPanel - Changing an accounts document root

To properly edit an accounts DocumentRoot go to /var/cpanel/userdata/username/ (replace username with the actual cPanel username for the account), then edit the file domain.com (where domain.com is your primary domain name).

You will see something like this in that file:

documentroot: /home/username/public_html

You will also see the cgi-bin area in this section:

scriptalias:
  -
    path: /home/username/public_html/cgi-bin
    url: /cgi-bin/

Simply change both to the right path, then save the file. At that point, copy your existing httpd.conf file, rebuild Apache, then restart Apache. Your site will then start serving from the new document root.

Here are the commands to do those:

cp /etc/httpd/conf/httpd.conf /etc/httpd/conf/httpd.conf.bak02121014
/scripts/updateuserdatacache
/scripts/rebuildhttpdconf
/etc/init.d/httpd restart ( If it not work, you can try : systemctl restart httpd.service)

You can also look at /etc/httpd/conf/httpd.conf at that point to see it now has the changed DocumentRoot line and cgi-bin path.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment