Enable SSL in Haproxy Docker Container
I have a haproxy container running on port 80. This container is started with command docker run -d -p 80:80 –name haproxy1…
I have a haproxy container running on port 80. This container is started with command docker run -d -p 80:80 –name haproxy1…
When you run exim mail server, it is good to keep an eye on number of emails in mail queue. here is…
Edit file vi /usr/local/centovacast/etc/cc-panel.conf Find listen 2199 default ssl; Add below listen 443 ssl; listen 80; Restart Centova Cast /usr/local/centovacast/centovacast restart At…
VestaCP Free Hosting control panel compromised again. Hackers where able to get access to VestaCP infrastcuture server, allowing them to modify installation…
To change PHP version for a site, first find available PHP handlers, this can be done with command /usr/local/psa/admin/bin/php_handlers_control –list You need…
When installing ffmpeg, i get error CC libavcodec/libvorbisenc.o CC libavcodec/libx264.o libavcodec/libx264.c: In function ‘X264_frame’: libavcodec/libx264.c:282:9: error: ‘x264_bit_depth’ undeclared (first use in this…
To enable Zend OPCache in PHP, edit php.ini add following to end of the file zend_extension=opcache.so Now you may need to adjust…
To install Redis PHP module from source, run cd /usr/local/src git clone https://github.com/phpredis/phpredis.git cd /usr/local/src/phpredis /usr/serverok/php-7.1.12/bin/phpize ./configure –with-php-config=/usr/serverok/php-7.1.12/bin/php-config make && make install…
Reset password for admin, can be used for any user, replace admin with username. UPDATE `ost_staff` SET `passwd` = MD5( ‘newpassword’ )…