日記とか趣味の乙女ゲームとか。
- Cygwinのバージョン
$ uname -r 1.5.18(0.132/4/2)
- Apacheのバージョン
$ cygcheck -c apache Cygwin Package Information Package Version Status apache 1.3.29-11 OK
- /etc/apache/httpd.conf の編集
#User nobody #Group #-1
User SYSTEM Group SYSTEM
#ServerName www.example.com
ServerName localhost
DocumentRoot "/var/www/htdocs"
DocumentRoot "/var/www/html"
<Directory "/var/www/htdocs">
<Directory "/var/www/html">
- 各種権限の設定
$ chmod 666 /var/log/apache/access_log $ chmod 666 /var/log/apache/error_log $ chmod 666 /var/log/httpd.log $ chmod 755 /var/www/cgi-bin/*
- 設定検証
$ /usr/sbin/apachectl configtest Syntax OK
- 起動
$ /usr/sbin/apachectl start
- 再起動
$ /usr/sbin/apachectl restart
- 停止
$ /usr/sbin/apachectl stop
PR
この記事へのコメント