Skip to main content

Posts

Showing posts from June, 2016

Improve responsiveness of BlackBerry Priv running Android Marshmallow

I am using a BlackBerry Priv, updated to the latest Android version (6.0.1). It has started to run slower and sometimes lagged. Here is a quick tip to improve the responsiveness. 1) Turn on Developer Options Settings -> About Phone -> Scroll to bottom and tap the Build Number several times. Eventually you will see "You are now a developer!" 2) Settings -> Developer Options Scroll down and turn off the following options (or set them to 0.5x) - Window animation scale - Transition animation scale - Animator duration scale This works on different Android phones: Xiaomi Note (International), Meizu m1 note (International), Xiaomi RedNote 4

Installing a wildcard SSL certificate to secure ISPConfig default interface

First backup existing certificates (or move it to another folder) /usr/local/ispconfig/interface/ssl Install the key, purchased SSL certificate (wildcard cert will work well) and intermediate cert. Name them as: ispserver.key ispserver.crt ispserver.bundle Modify apache2 settings so that it observes the CA intermediate cert: /etc/apache2/sites-available/ispconfig.vhost   SSLEngine On   SSLProtocol All -SSLv3   SSLCertificateFile /usr/local/ispconfig/interface/ssl/ispserver.crt   SSLCertificateKeyFile /usr/local/ispconfig/interface/ssl/ispserver.key   #SSLCACertificateFile /usr/local/ispconfig/interface/ssl/ispserver.bundle Modify the last line by removing the "#" Then restart apache2 service apache2 restart