Journal

Topic archive

Web Servers & DevOps

Server configuration, Nginx, Apache, Linux administration, monitoring, and caching solutions

29 published articles
NGINX Config Generator — editorial illustration
Web Servers & DevOpsJan 23, 20201 min

NGINX Config Generator

I found this gold mine today and I tell you this is the best site for generating accurate Nginx configuration with all the necessary configuration. I am assuming you're running Ubuntu or any other Nix flavor and have…

Read article
Nginx Deny From IP — editorial illustration
Web Servers & DevOpsJul 12, 20151 min

Nginx Deny From IP

Nginx is a very unique Web Server, today I will show how to deny IP using Nginx, Please note you must have this module installed in your Nginx web server , If you don't have it installed - Simply download my…

Read article
Yslow Score Tweak — editorial illustration
Web Servers & DevOpsApr 13, 20131 min

Yslow Score Tweak

Yslow Score Little trick - to increase your YSLOW Score Open your .htaccess file and add the following <code>Header set X-CDN "WCWS Internet Inc" Header set X-Powered-By "TDINX" Header unset Pragma</code> To do the…

Read article
Squid as Reverse Proxy — editorial illustration
Web Servers & DevOpsApr 12, 20134 min

Squid as Reverse Proxy

Squid Reverse Proxy 1.Installing the squid proxy in the server # yum install squid 2.All the configuration should are done at squid.conf file which is located at /etc/squid/squid.conf Changes : At acl Declaration :…

Read article
Nginx + Varnish — editorial illustration
Web Servers & DevOpsApr 11, 20132 min

Nginx + Varnish

Install Varnish & Configure to work with NGINX Configure the VCL VCL is the Varnish Configuration Language. The VCL file holds most of the config. sudo vi /etc/varnish/default.vcl Tell Varnish to communicate with the…

Read article