Hugo Web Framework

Hugo is a fantastic and fast website engine. It’s written in Go (aka Golang). One day, I visited a blog that is built on Hugo’s framework and I immediately charmed by the fluidity, well-structured and responsiveness of that website. Thanks again, aozaki.cc Many great […]

Cryptanalysis of coronavirus

by Elena Larina Source: https://aurora.network/articles/1-mirovoy-krizis/77716-kriptoanalitika-koronavirusa In collaboration with Vladimir Ovchinsky Behind the scenes of a pandemic The coronavirus pandemic is a complex and dangerous process. When discussing it, there is no place for hype, hatering, cheap conspiracy theories and amateurish reasoning. Virologists and physicians […]

Some usual Varnish commands

(for CentOS 7) nano /etc/varnish/default.vcl nano /etc/varnish/varnish.params varnish_reload_vcl netstat -lntp | grep 80 service nginx reload varnishstat varnishlog service nginx restart service varnish restart # Start and enable Varnish process to start at system boot. systemctl enable –now varnish nano /etc/nginx/conf.d/… # Verify that Varnish […]

Configure Varnish to auto direct from http to https

In SSH terminal, edit the domain configuration file in /etc/nginx/conf.d/ Configure Nginx as SSL Proxy server { listen 443 ssl http2; server_name pquan.info; #change mine to your domain. # SSL #You can use Let's Encrypt or Comodo ssl_certificate /etc/nginx/ssl/nginx.crt; ssl_certificate_key /etc/nginx/ssl/nginx.key; location / { […]

How to Easily Display Code on Your WordPress Site

Repost from https://www.wpbeginner.com/wp-tutorials/how-to-easily-display-code-on-your-wordpress-site/ Do you want to display code in your WordPress blog posts? If you tried to add code like regular text, then WordPress will not display it correctly. WordPress runs your content through several cleanup filters each time you save a post. […]