&size(24){&color(darkgreen){''&color(darkred){L};inux + &color(darkred){A};pache + &color(darkred){M};ySQL + &color(darkred){P};HP''};}; #navi(DB) ''CONTENTS'' #contents ---- ''LINKS'' -''Official sites'' --[[PHP Manual>http://www.php.net/manual/en/]] --[[MySQL Reference Manual>http://dev.mysql.com/doc/mysql/en/]] --[[日本MySQLユーザ会>http://www.mysql.gr.jp/]] --[[日本PHPユーザ会>http://www.php.gr.jp/]] -''Know-how'' --[[PHP による Web プログラミング>http://oku.edu.mie-u.ac.jp/~okumura/php/]] --[[釣りとコンピュータ>http://tsuttayo.sytes.net]] --[[MySQL Cookbook>http://www.kitebird.com/mysql-cookbook/]] --[[安全な RedHat Apache サーバの構築方法>http://www.linux.or.jp/JF/JFdocs/SSL-RedHat-HOWTO.html]] -''Developments'' --[[PHPEclipse>http://www.phpeclipse.de]] --[[XAMPP>http://sourceforge.net/projects/xampp/]] --[[WAMPP>http://sourceforge.net/project/showfiles.php?group_id=61776&package_id=58299]] ---- **SSL [#q785d44a] FreeBSDの場合 /usr/local/etc/apache2/ssl.conf /etc/rc.conf apache2ssl_enable=YES ***Server Private Key [#la1ef3e7] /usr/local/etc/apache2/ssl.key # openssl genrsa -out server.key 1024 ***Server Certificate [#de55039e] /usr/local/etc/apache2/ssl.crt bee# openssl req -new -key ../ssl.key/server.key -x509 -out server.crt You are about to be asked to enter information that will be incorporated into your certificate request. What you are about to enter is what is called a Distinguished Name or a DN. There are quite a few fields but you can leave some blank For some fields there will be a default value, If you enter '.', the field will be left blank. ----- Country Name (2 letter code) [AU]:JP State or Province Name (full name) [Some-State]:. Locality Name (eg, city) []:. Organization Name (eg, company) [Internet Widgits Pty Ltd]:. Organizational Unit Name (eg, section) []:. Common Name (eg, YOUR name) []:. Email Address []:. **PHP [#b8eabeeb] ***php-mode for emacs [#fdf4b4a7] FreeBSDの場合 # portinstall lang/php-mode.el .emacs (autoload 'php-mode "php-mode" "Mode for editing PHP source files") (add-to-list 'auto-mode-alist '("\\.\\(inc\\|php[s34]?\\)" . php-mode))