• Home
  • Ubuntu 18.04
    • Whats New?
    • Upgrade Ubuntu
    • Install Java
    • Install Node.js
    • Install Docker
    • Install Git
    • Install LAMP Stack
  • Tutorials
    • AWS
    • Shell Scripting
    • Docker
    • Git
    • MongoDB
  • Funny Tools
  • FeedBack
  • Submit Article
  • About Us
TecAdmin
Menu
  • Home
  • Ubuntu 18.04
    • Whats New?
    • Upgrade Ubuntu
    • Install Java
    • Install Node.js
    • Install Docker
    • Install Git
    • Install LAMP Stack
  • Tutorials
    • AWS
    • Shell Scripting
    • Docker
    • Git
    • MongoDB
  • Funny Tools
  • FeedBack
  • Submit Article
  • About Us

How to Add Custom Settings in WHM/cPanel Apache VirtualHost

Written by Rahul, Updated on October 14, 2014

While using WHM/cPanel, We can not make any changes directly in Apache configuration file. This file is automatically created by cPanel templates and re-created on system reboot or WHM update. Any Custom changes will be lost during recreation of Apache configuration file.

But If we want to add own custom configuration in Apache configuration of any websites VirtualHost, We can do it by creating configuration file at /usr/local/apache/conf/userdata/std/2_2/<username>/<sitename.com>/extra.conf. In other versions this location may change. So to find this location, check website VirtualHost in main configuration file, at the end of VirtualHost you will get location like below

# To customize this VirtualHost use an include file at the following location
# Include "/usr/local/apache/conf/userdata/ssl/2_2/myuser/mydomain.com/*.conf"

How to do:

Now use the following commands to create directory structure and configuration file. Change myuser with your actual cPanel username and change mydomain.com with actual domain name for which you want to add custom settings.

# mkdir -p /usr/local/apache/conf/userdata/ssl/2_2/myuser/mydomain.com/
# cd /usr/local/apache/conf/userdata/ssl/2_2/myuser/mydomain.com/

Now create configuration file with any name but with .conf extension

# vim extra.conf

Put your custom settings in extra.conf file and execute following command from shell. This command will uncomment “Include “/usr/local/apache/conf/userdata/ssl/2_2/myuser/mydomain.com/*.conf” line in VirtualHost of main apache configuration file.

# /scripts/ensure_vhost_includes --all-users

And all done. By this way you will not loose any custom changes for your VirtualHost.

Share it!
Share on Facebook
Share on Twitter
Share on LinkedIn
Share on Reddit
Share on Tumblr
Share on Whatsapp
Rahul
Rahul
Connect on Facebook Connect on Twitter

I, Rahul Kumar am the founder and chief editor of TecAdmin.net. I am a Red Hat Certified Engineer (RHCE) and working as an IT professional since 2009..

2 Comments

  1. Avatar Manjeet Seewooth Reply
    April 11, 2019 at 5:51 am

    HEllo,

    Suppose i want to raise the proxytimeout of a vhost , in the /etc/apache2/conf.d/userdata/ssl/2_4/user/account/extra.conf i just add :
    ProxyTimeout 30s ,
    will it consider the change ? or i should add ;

    SetHandler proxy:unix:/opt/cpanel/ea-php72/root/usr/var/run/php-fpm/9e52de05db715a5d60427be56982097f8f20f39c.sock|fcgi://testgo.mips.mu
    ProxyTimeout 30s

  2. Avatar Nick Fenwick Reply
    March 17, 2017 at 7:51 am

    Thank you for this post, I just wanted to expand on it. As you say, the reason the conf file you refer to is read by Apache is that it is Included from httpd.conf, e.g.:

    ServerName servername.com
    …
    Include “/usr/local/apache/conf/userdata/ssl/2_2/username/servername.com/*.conf”

    The ‘ssl’ in the conf file path refers to the fact that this is port 443 configuration and so is intended for . Requests to will look for config in /usr/local/apache/conf/userdata/std/2_2/username/servername.com/*.conf.

    I believe the ‘2_2’ in the path refers to Apache httpd verion 2.2. If you are using 2.4 this part of the path may also change.

    I hope this helps people running into this and trying something slightly different 🙂

Leave a Reply Cancel reply

Popular Posts

  • How To Install Python 3.9 on Ubuntu 20.04 5
  • How to Install Python 3.9 on CentOS/RHEL 7 & Fedora 32/31 0
  • How To Install VNC Server on Ubuntu 20.04 1
  • How To Install NVM on macOS with Homebrew 0
  • (Solved) apt-add-repository command not found – Ubuntu & Debian 0
© 2013-2020 Tecadmin.net. All Rights Reserved | Terms  | Privacy Policy