Mindblown: a blog about philosophy.

  • WordPress and Nginx with PHP-FPM

    WordPress and Nginx with PHP-FPM

    When I installs wordpress running on nginx with php-fpm, I will add the following config lines at nginx virtual host setting to allow static files (image files, document files, etc.) to bypass php-fpm. location / {     try_files $uri $uri/ /index.php?q=$uri&$args; } location ~* ^.+\.(jpg|jpeg|gif|png|css|zip|pdf|txt|js|flv|swf|html|htm)$        {     # } client_max_body_size 64M; And adding the following […]

  • Installing ISPConfig 3 with Nginx, Postfix, Dovecot

    Installing ISPConfig 3 with Nginx, Postfix, Dovecot

    To provide new email and web hosting service to our customers, we deploys ISPConfig 3 with Nginx, Postfix and Dovecot on few Linux hosting systems. And our customers have their own private Linode and other cloud service providers. Their own systems are hosting their emails and web sites for business needs.

  • Install OpenEMM 2015 on Ubuntu 14.04 LTS

    Install OpenEMM 2015 on Ubuntu 14.04 LTS

    We install a OpenEMM 2015 on Ubuntu 14.04 LTS server edition last week, running on a Linode instance. Our customer would like to send a email to 10,000 on next day of installation, and we choose OpenEMM for his case. To comply with local law in HK for mass information sending, we provides a unsubscription […]

  • Let’s Encrypt with Nginx on Ubuntu 16.04 Server

    Let’s Encrypt with Nginx on Ubuntu 16.04 Server

    Let’s Encrypt is a free and open certificate authority which provides free SSL certificate services to everyone. Their SSL certificates are suitable for web service and email service. Certbot is a tool developed by EFF, it enable HTTPS on your website automatically and deploy Let’s Encrypt certificates. Installation of Certbot Installation procedure is simple! You […]

  • Install Jailkit on Ubuntu

    If you would like to chroot ssh user, you may installed Jailkit. It is not available on Ubuntu software repos but you can compile & build it in your own. Before we build jailkit, we install the required software building tools first. $ apt-get install build-essential autoconf automake1.11 libtool flex bison debhelper binutils And then, […]

Got any book recommendations?