Mindblown: a blog about philosophy.
-
Samba Windows file server on Linux
Samba is an open source software to provide windows file and print sharing on Linux server. Windows 10: Setup Tips Q: Windows 10 displays error message “\\samba\share is not accessible. You might not have permission to use this network resource. Contact the administrator of this server to find out if you have access permissions. You […]
-
Common troubleshooting to Roundcube web mail
At roundcube + dovecot, an error message “connection to storage server failed” is returned when users login their mailbox thru roundcube webmail, probably it is caused by limited numbers of connetion per user IP address. For dovecot imap service on Ubuntu, we can add the following lines to increase to (for an example) 40 connections […]
-
How to install Hongkong Post SSL e-Cert on Nginx web server
We installed a Hongkong Post e-Cert (Server) on the Nginx web server of our client successfully. Hongkong Post provides a 9-digit PIN envelope reference number and a 16-digit e-Cert PIN password to our client. In this example, we assume that www.linuxharbour.com is the hostname of the web server.
-
Nginx website redirect
When we should redirect a website to a new web address (URL) in nginx, we may make use of Nginx rewrite insides the web site configuration block (ie. location { … }). There are few different types of HTTP redirects, which are in different meaning to browsers. HTTP status code 301 & 302 are two […]
-
Drupal and Nginx with PHP-FPM
When I migrate a drupal site to 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. I use nginx variable $query_string to pass query to drupal. location / { try_files $uri $uri/ /index.php?$query_string; } location […]
Got any book recommendations?