How to make remote desktop RDP connection more responsive.

Working with a slow remote desktop sucks! I cannot take that delay between my click and the action in my remote desktop connections. If you search on the internet for ways to make your remote desktop connection faster, you will find tones of articles about how to reduce the quality of the remote desktop colors …

Setup SSL on nginx Proxy Server Servername

If you are using nginx as your reverse proxy server to point your domains to the real hosts and you wish to setup  SSL on your servername use following configuration for your server_name: server { server_name your_server_name_domain_addr; listen 443 ssl; ssl_certificate /your_crt_file_address.crt; ssl_certificate_key /your_key_file_address.key; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_ciphers HIGH:!aNULL:!MD5; location / { proxy_set_header Host …

Insert MySQL table data into Elasticsearch using PHP

I just released a tool, mySQLtoes which selects mysql data from the specified table and insert it into Elasticsearch indexes. I know the most common way to insert data from mysql to elasticsearch is to use JDBC driver of Elasticsearch, but due to the environment that I was developing on I needed to do some data …