How to disable SSL on Webmin Miniserv

Webmin is one of the most commonly using Web Hosting control panels. This is an open source control panel which works on port 10000. Miniserv is the name of the web server application which handles the Webmin Web application. By default, Miniserv uses SSL for HTTP connections. This default setting cause some warning on the browser while accessing Webmin panel. The SSL is using for a secured connection to server.

In Webmin control panel, there is an option to disable the SSL function. This can be done from the server CLI or from the control panel.

With SSL disabled, you can access the Webmin panel over a standard HTTP connection.

Here I’m explaining the steps to disable SSL from server backend (Command Line Interface). See the steps explained below:

Step 1: SSH to server as root user

# ssh root@IPaddress

Step 2: Open the configuration file with your favorite text editor. The configuration file for Miniserv is “/etc/webmin/miniserv.conf.”

[root@crybit #] vim /etc/webmin/miniserv.conf

Step 3:  Change the value of  “ssl” entry from 1 to 0

ssl=1 to enable
ssl=0 to disable 

Step 4: Restart Webmin service.

[root@crybit #] /etc/init.d/webmin restart

Step 5: Restart Apache

[root@crybit #] /etc/init.d/httpd restart

That’s it.

Please see Disable SSL – Webmin if you’re not much familiar with command line. You can do the same thing from the web interface.

Post navigation

Arunlal A

Senior System Developer at Zeta. Linux lover. Traveller. Let's connect! Whether you're a seasoned DevOps pro or just starting your journey, I'm always eager to engage with like-minded individuals. Follow my blog for regular updates, connect on social media, and let's embark on this DevOps adventure together! Happy coding and deploying!

2 thoughts on “How to disable SSL on Webmin Miniserv

  1. It works fine.

    After you did the above steps, please restart webserver (/etc/init.d/httpd restart )
    better to restart iptables also.

Leave a Reply

Your email address will not be published. Required fields are marked *