いらっしゃいませ
ここでは、Apacheのインストール手順を掲載しています。
Apacheとは…?
Apacheはオープンソースで開発されているWebサーバ(HTTPサーバ)です。HTTPとはHyperText Transfer Protocolの略で、Webページで使われるHTMLや画像ファイルのデータ(コンテンツ)を送受信するためのルールのことです。
Apacheのインストール
[root@sl ~]# yum -y install httpd
読み込んだプラグイン:fastestmirror, security
インストール処理の設定をしています
Loading mirror speeds from cached hostfile
* sl: ftp.riken.jp
* sl-security: ftp.riken.jp
* sl6x: ftp.riken.jp
* sl6x-security: ftp.riken.jp
依存性の解決をしています
--> トランザクションの確認を実行しています。
---> Package httpd.x86_64 0:2.2.15-69.sl6 will be インストール
--> 依存性の処理をしています: httpd-tools = 2.2.15-69.sl6 のパッケージ: httpd-2.2.15-69.sl6.x86_64
--> 依存性の処理をしています: apr-util-ldap のパッケージ: httpd-2.2.15-69.sl6.x86_64
--> トランザクションの確認を実行しています。
---> Package apr-util-ldap.x86_64 0:1.3.9-3.el6_0.1 will be インストール
---> Package httpd-tools.x86_64 0:2.2.15-69.sl6 will be インストール
--> 依存性解決を終了しました。
依存性を解決しました
================================================================================
パッケージ アーキテクチャ バージョン リポジトリー
容量
================================================================================
インストールしています:
httpd x86_64 2.2.15-69.sl6 sl 836 k
依存性関連でのインストールをします。:
apr-util-ldap x86_64 1.3.9-3.el6_0.1 sl 15 k
httpd-tools x86_64 2.2.15-69.sl6 sl 80 k
トランザクションの要約
================================================================================
インストール 3 パッケージ
総ダウンロード容量: 931 k
インストール済み容量: 3.2 M
パッケージをダウンロードしています:
(1/3): apr-util-ldap-1.3.9-3.el6_0.1.x86_64.rpm | 15 kB 00:00
(2/3): httpd-2.2.15-69.sl6.x86_64.rpm | 836 kB 00:00
(3/3): httpd-tools-2.2.15-69.sl6.x86_64.rpm | 80 kB 00:00
--------------------------------------------------------------------------------
合計 1.5 MB/s | 931 kB 00:00
rpm_check_debug を実行しています
トランザクションのテストを実行しています
トランザクションのテストを成功しました
トランザクションを実行しています
インストールしています : httpd-tools-2.2.15-69.sl6.x86_64 1/3
インストールしています : apr-util-ldap-1.3.9-3.el6_0.1.x86_64 2/3
インストールしています : httpd-2.2.15-69.sl6.x86_64 3/3
Verifying : httpd-2.2.15-69.sl6.x86_64 1/3
Verifying : apr-util-ldap-1.3.9-3.el6_0.1.x86_64 2/3
Verifying : httpd-tools-2.2.15-69.sl6.x86_64 3/3
インストール:
httpd.x86_64 0:2.2.15-69.sl6
依存性関連をインストールしました:
apr-util-ldap.x86_64 0:1.3.9-3.el6_0.1 httpd-tools.x86_64 0:2.2.15-69.sl6
完了しました!
Apacheの設定
[root@sl ~]# vi /etc/httpd/conf/httpd.conf
ServerTokens OS
↓
ServerTokens ProductOnly
ServerAdmin root@localhost
↓
ServerAdmin ************@gmail.com (管理者のメールアドレス)
#ServerName www.example.com:80
↓
ServerName mhserv.mydns.jp:80 (取得したドメイン)
<Directory "/var/www/html">
Options Indexes FollowSymLinks
↓
Options Includes ExecCGI FollowSymLinks
AllowOverride None
↓
AllowOverride All
Order allow,deny
Allow from all
</Directory>
<IfModule mod_userdir.c>
UserDir disable
↓
#UserDir disable
#UserDir public_html
↓
UserDir public_html
</IfModule>
DirectoryIndex index.html index.html.var
↓
DirectoryIndex index.html index.htm index.php index.cgi index.shtml
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
↓
LogFormat "%h %l %u %t \"%!414r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
CustomLog logs/access_log combined
↓
CustomLog logs/access_log combined env=!no_log
SetEnvIf Request_URI "default\.ida" no_log
SetEnvIf Request_URI "cmd\.exe" no_log
SetEnvIf Request_URI "root\.exe" no_log
SetEnvIf Request_URI "Admin\.dll" no_log
SetEnvIf Request_URI "NULL\.IDA" no_log
SetEnvIf Request_URI "xmlrpc\.php" no_log
SetEnvIf Request_URI "zero_vote" no_log
SetEnvIf Request_URI "sumthin" no_log
SetEnvIf Request_URI "~akirin" no_log
SetEnvIf Request_URI "\.(gif)|(jpg)|(png)|(css)$" no_log
#LANのネットワークアドレスを指定
SetEnvIf Remote_Addr 192.168. no_log
ServerSignature On
↓
ServerSignature Off
<Directory "/var/www/icons">
Options Indexes MultiViews
↓
Options MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
AddDefaultCharset UTF-8
↓
#AddDefaultCharset UTF-8
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
↓
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
AddType application/x-httpd-php .php
#AddHandler cgi-script .cgi
↓
AddHandler cgi-script .cgi .pl
コンテンツの圧縮転送
コンテンツを転送するときに、サーバ側で圧縮して転送する"mod_deflate"というモジュールもがあります。
以下のように入力をすることで、設定された形式のファイルに対し圧縮転送を行うことが出来ます。
[root@sl ~]# vi /etc/httpd/conf.d/deflate.conf
<Location /> # Insert filter SetOutputFilter DEFLATE # Netscape 4.x has some problems... BrowserMatch ^Mozilla/4 gzip-only-text/html # Netscape 4.06-4.08 have some more problems BrowserMatch ^Mozilla/4\.0[678] no-gzip # MSIE masquerades as Netscape, but it is fine # BrowserMatch \bMSIE !no-gzip !gzip-only-text/html # NOTE: Due to a bug in mod_setenvif up to Apache 2.0.48 # the above regex won't work. You can use the following # workaround to get the desired effect: BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html # Don't compress images SetEnvIfNoCase Request_URI \\.(?:gif|jpe?g|png|ico|z|taz|t?gz|t?bz2?|zip|lzh|sit|rar|pdf|mp3|ogg|wma|rm|wmv| mov|mpe?g)$ \no-gzip dont-vary # Make sure proxies don't deliver the wrong content Header append Vary User-Agent env=!dont-vary </Location>
Perlへのシンボリックリンクの作成
CGIによって実行場所が/usr/bin/perlだったり/usr/local/bin/perlだったりするので、それに対応するため、シンボリックリンクを張ります。
[root@sl ~]# ln -s /usr/bin/perl /usr/local/bin/perl
[root@sl ~]# whereis perl
perl: /usr/bin/perl /usr/local/bin/perl /usr/share/man/man1/perl.1.gz
次は通信を暗号化しましょう。
参考にしたサイト様
今回新しく登場したコマンド
- ln
- whereis
[広告]
トップページ
Scientific Linux 6
○準備
○仮想化準備(VMware)
○仮想化準備(Hyper-V)
○仮想化準備(Proxmox)
○基本操作
○導入
○セキュリティ対策
○NTPサーバ
○Dynamic DNS
○DNSサーバ
○データベース
○WEBサーバ
○FTPサーバ
○メールサーバ
○ブログシステム
○その他