今回はApacheとPHPとMySQLの設定を行います。
Apacheのhttpd.confはこのようにします。
各種コメントアウトを参照してください。
[cpp]
ServerRoot "c:/Apache"
Listen 80
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule authn_core_module modules/mod_authn_core.so
LoadModule authn_file_module modules/mod_authn_file.so
LoadModule authz_core_module modules/mod_authz_core.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule dir_module modules/mod_dir.so
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule mime_module modules/mod_mime.so
ServerAdmin kentarou.mail@gmail.com
ServerName jnr115.com:80
<Directory />
AllowOverride none
</Directory>
DocumentRoot "c:/htdocs"
#.httaccessを許可するためAllowOverrideはAllにすること
<Directory "c:/htdocs">
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
#phpをデフォルトで読み込む設定にすること
<IfModule dir_module>
DirectoryIndex index.php index.html index.htm
</IfModule>
ErrorLog "logs/error.log"
LogLevel info
<IfModule log_config_module>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
<IfModule logio_module>
# You need to enable mod_logio.c to use %I and %O
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>
CustomLog "logs/access.log" common
</IfModule>
<IfModule mime_module>
TypesConfig conf/mime.types
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
</IfModule>
#phpモジュールの読み込み
LoadModule php5_module "C:/php/php5apache2_4.dll"
AddHandler php5-script .php
PHPIniDir "C:/php/"
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
#おまじない?これをしないとApacheが落ちる
<IfModule mpm_winnt_module>
AcceptFilter http none
</IfModule>
[/cpp]
PHPのphp.iniは長いので変更点だけ書いておきます。
現在準備中
MySQLのmy.iniは長いので変更点だけ書いておきます。
現在準備中
ここまで設定できたらあとはソフトウェア側の設定に入ります。
それは次回で
コメント