Archive for the tag:

SSL certificate with Apache + mod_ssl

Nessun commento » Apache, Sistema, Tips & tricks No comment '

The logo of Apache Software Foundation In this post carry over some of my old notes on how to create and install an SSL certificate on a web server Apache 1.3 .* with the mod_ssl module. For more detailed and comprehensive reference documentation that is at http://www.modssl.org/docs s page of `man` openssl. An html version of the latter is at http://www.openssl.org/docs/. Read More »

Touch recursive without unpleasant surprises

Nessun commento » Shell, Tips & tricks No comment '

To make the touch of a recursive directory not get the usual errors (file names that contain spaces or other abnormal characters) is sufficient to run the command:

find . -print0 | xargs -0 touch