Changes between Initial Version and Version 1 of ISPconfig


Ignore:
Timestamp:
02/22/08 17:12:54 (16 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ISPconfig

    v1 v1  
     1[wiki:Basic Basic setup]
     2
     3= Additional Infos =
     4packages that i had to emerge manually:[[BR]]
     5sudo pam (install this first !!!)
     6
     7stuff that i had to change:[[BR]]
     8in /etc/portage/package.use:[[BR]]
     9dev-libs/cyrus-sasl authdaemond urandom to dev-libs/cyrus-sasl authdaemond urandom pam[[BR]]
     10[[BR]]
     11in /etc/courier-imap/imapd, /etc/courier-imap/imapd-ssl, /etc/courier-imap/pop3d, /etc/courier-imap/pop3d-ssl:[[BR]]
     12MAILDIR=.maildir to MAILDIR=Maildir[[BR]]
     13MAILDIRPATH=.maildir to MAILDIRPATH=Maildir[[BR]]
     14[[BR]]
     15in /etc/courier-imap/imapd:[[BR]]
     16MAXDAEMONS=40 to MAXDAEMONS=200, MAXPERIP=4 to MAXPERIP=40[[BR]]
     17[[BR]]
     18in /etc/pam.d:[[BR]]
     19had to create file smtp (should not be created automatically if smtp is installed after pam !!!)[[BR]]
     20[[BR]]
     21in /etc/mail/spamassassin:[[BR]]
     22# mkdir bayes[[BR]]
     23# chmod 777 bayes[[BR]]
     24add ...[[BR]]
     25[[BR]]
     26in /etc/vhosts/webapp-config (to make webapp-config work with the ispconfig vhost root)[[BR]]
     27vhost_htdocs_insecure="htdocs" -> vhost_htdocs_insecure="web"[[BR]]
     28vhost_htdocs_secure="'htdocs-secure" -> vhost_htdocs_secure="web"[[BR]]
     29
     30don'ts (that i did):[[BR]]
     31during ispconfig install:[[BR]]
     32In step 7 ("Encrypting RSA private key of CA with a pass phrase for security [ca.key]")and step 8 ("Encrypting RSA private key of SERVER with a pass phrase for security [server.key]") of the certificate creation process you are asked if you want to encrypt the respective key now. Choose n there because otherwise you will always be asked for a password whenever you want to restart the ISPConfig system which means it cannot be restarted without human interaction![[BR]]
     33
     34in this case recreate the certs using:[[BR]]
     35
     36openssl genrsa -des3 -passout pass:caf2macg4 -out /root/ispconfig/httpd/conf/ssl.key/server.key2 1024[[BR]]
     37openssl req -new -passin pass:caf2macg4 -passout pass:caf2macg4 -key /root/ispconfig/httpd/conf/ssl.key/server.key2 -out /root/ispconfig/httpd/conf/ssl.csr/server.csr -days 365[[BR]]
     38openssl req -x509 -passin pass:caf2macg4 -passout pass:caf2macg4 -key /root/ispconfig/httpd/conf/ssl.key/server.key2 -in /root/ispconfig/httpd/conf/ssl.csr/server.csr -out /root/ispconfig/httpd/conf/ssl.crt/server.crt -days 365[[BR]]
     39openssl rsa -passin pass:caf2macg4 -in /root/ispconfig/httpd/conf/ssl.key/server.key2 -out /root/ispconfig/httpd/conf/ssl.key/server.key[[BR]]
     40chmod 400 /root/ispconfig/httpd/conf/ssl.key/server.key[[BR]]
     41[[BR]]