http://www.cs.vsb.cz/kratky/courses/2004-05/udp/presentation/udp-3_6.pdf

iPHONE HACK

aplika iphone rusaci iphone

    httaccess

Shashin plugin for picasa

Platba na netu

Wordpress

CREATING A CERTIFICATE FOR APACHE-SSL
Create a key file:

openssl genrsa -out key.pem 2048
Create a certificate request. You will be asked to give information which will be included in the certificate. openssl req -new -key key.pem -out request.pem
Create a self-signed certificate that is valid for a year:
openssl req -x509 -days 365 -key key.pem -in request.pem -out certificate.pem
Concatenate the key and certificate into a single file:
cat key.pem certificate.pem >apache.pem
Copy the new file to the location where apache-ssl looks for the certificate. For example:
cp apache.pem /etc/apache-ssl
Restart apache-ssl and inetd

ServerName earth.my.flat

DocumentRoot /var/www/
ErrorLog /var/log/apache2/error.log
CustomLog /var/log/apache2/access.log combined

SSLEngine on
SSLCertificateFile /etc/apache2/ssl/apache.pem

Poslední změna: Ondra Pavelka, 15.06.2009 12:34:22, IP x.x.198.253
www.openet.cz