Docker for Symfony 1.0.7 has been released

Hello,

We pleased to announce the release of “Docker for Symfony” 1.0.7

  • BUGFIX [PHP] Remove xdebug from pecl installation if disabled
  • FEATURE [MYSQL] Import MySQL database copy without using a password form the console
  • FEATURE [PHP] Added ability to change max_execution_time in file .env
  • FEATURE [NGINX] Added ability to put rewrite rules into file config/nginx/rewrite/project.conf
  • FEATURE [NGINX] Added ability select SF vs SF + PWA configuration
  • FEATURE [PMA] Added phpMyAdmin auto login functionality

The project “Docker for Symfony” you can find here d4d.lt

Docker for Symfony is 1 year old!

The first birthday of the open source project “Docker for Symfony” aka D4D.LT was on December 16, 2019. The future of this project was unknown. However, after 3 months work some companies have provided us with testing server (Hostinger) and programming tools (JetBrains). The open source project “Docker for Symfony” is constantly being improved and new features are being introduced.

A few of them:
1. We improved environment file configuration. Some settings can be controlled using bash script.
2. Support all available Symfony framework versions: 2.x, 3.x, 4.x, 5.x.
3. Support another possible frameworks, e.g. CodeIgniter (CI), CakePHP, Laravel (not tested yet).
4. NodeJS version selection.

The project “Docker for Symfony” you can find here d4d.lt

Installing VMware on 20.04: Failed to build vmmon

I found a solution on mkucebek’s github sources

#!/bin/bash
VMWARE_VERSION=workstation-15.1.0
TMP_FOLDER=/tmp/patch-vmware
rm -fdr $TMP_FOLDER
mkdir -p $TMP_FOLDER
cd $TMP_FOLDER
git clone https://github.com/mkubecek/vmware-host-modules.git
cd $TMP_FOLDER/vmware-host-modules
git checkout $VMWARE_VERSION
git fetch
make
sudo make install
sudo rm /usr/lib/vmware/lib/libz.so.1/libz.so.1
sudo ln -s /lib/x86_64-linux-gnu/libz.so.1 
/usr/lib/vmware/lib/libz.so.1/libz.so.1
sudo /etc/init.d/vmware restart

Then, you just have to launch VMware Workstation without building modules.

How to install WordPress, Linux, Nginx, MariaDB 10.4, PHP 7.4 (LEMP stack) on CentOS 8

LEMP (also known as LNMP) is a group of open-source software which enable a server to host dynamic websites and web applications. It consists of the Linux operating system, the (E)Nginx web server (which replaces the Apache component of a LAMP stack), the MySQL relational database management system, and the PHP programming language.

Continue reading “How to install WordPress, Linux, Nginx, MariaDB 10.4, PHP 7.4 (LEMP stack) on CentOS 8”

Installing VMware on 19.10: Failed to build vmmon

I found a solution on mkucebek’s github sources

#!/bin/bash
VMWARE_VERSION=workstation-15.1.0
TMP_FOLDER=/tmp/patch-vmware
rm -fdr $TMP_FOLDER
mkdir -p $TMP_FOLDER
cd $TMP_FOLDER
git clone https://github.com/mkubecek/vmware-host-modules.git
cd $TMP_FOLDER/vmware-host-modules
git checkout $VMWARE_VERSION
git fetch
make
sudo make install
sudo rm /usr/lib/vmware/lib/libz.so.1/libz.so.1
sudo ln -s /lib/x86_64-linux-gnu/libz.so.1 
/usr/lib/vmware/lib/libz.so.1/libz.so.1
sudo /etc/init.d/vmware restart

Then, you just have to launch VMware Workstation without building modules.

How to configure local two-factor authentication with U2F on Ubuntu 19.10

This guide covers how to secure a local Linux login using the U2F feature on YubiKeys and Security Keys. This does not work with remote logins via SSH or other methods. The commands in the guide are for an Ubuntu (or Ubuntu based) system, but the instructions can be adapted for any distribution of Linux.

Continue reading “How to configure local two-factor authentication with U2F on Ubuntu 19.10”

How to install and configure OpenVPN on Debian 10

OpenVPN is a free and open source VPN solution. VPN solution. As a result VPN allow to secure your data communications. It implements OSI layer 2 or 3 secure network extension using the SSL/TLS protocol. A VPN allows your yo connect securely to an insecure public network such as WiFi network at the airport or hotel. Almost companies also use VPN to access corporate or enterprise or home server resources. You can bypasss geo-blocked site and increase your privacy or safety online.

Continue reading “How to install and configure OpenVPN on Debian 10”