-
Notifications
You must be signed in to change notification settings - Fork 0
/
apache.sh
335 lines (266 loc) · 10.2 KB
/
apache.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
#!/bin/sh
#rootユーザーで実行 or sudo権限ユーザー
<<COMMENT
作成者:サイトラボ
URL:https://www.site-lab.jp/
URL:https://buildree.com/
注意点:conohaのポートは全て許可前提となります。もしくは80番、443番の許可をしておいてください。システムのfirewallはオン状態となります。centosユーザーのパスワードはランダム生成となります。最後に表示されます
目的:システム更新+apache2.4系のインストール
・apache2.4.6or2.4.x
・mod_sslのインストール
・centosユーザーの作成
COMMENT
start_message(){
echo ""
echo "======================開始======================"
echo ""
}
end_message(){
echo ""
echo "======================完了======================"
echo ""
}
#CentOS7か確認
if [ -e /etc/redhat-release ]; then
DIST="redhat"
DIST_VER=`cat /etc/redhat-release | sed -e "s/.*\s\([0-9]\)\..*/\1/"`
#DIST_VER=`cat /etc/redhat-release | perl -pe 's/.*release ([0-9.]+) .*/$1/' | cut -d "." -f 1`
if [ $DIST = "redhat" ];then
if [ $DIST_VER = "7" ];then
#プロンプトをechoを使って表示
echo -n "ドメイン名を入力してください":
#入力を受付、その入力を「domain」に代入
read domain
#結果を表示
echo $domain
#EPELリポジトリのインストール
start_message
yum remove -y epel-release
yum -y install epel-release
end_message
#gitリポジトリのインストール
start_message
yum -y install git
end_message
# yum updateを実行
echo "yum updateを実行します"
echo ""
start_message
yum -y update
end_message
# apacheのインストール
echo "apacheをインストールします"
echo ""
PS3="インストールしたいPHPのバージョンを選んでください > "
ITEM_LIST="apache2.4.6 apache2.4.x"
select selection in $ITEM_LIST
do
if [ $selection = "apache2.4.6" ]; then
# apache2.4.6のインストール
echo "apache2.4.6をインストールします"
echo ""
start_message
yum -y install httpd
yum -y install openldap-devel expat-devel
yum -y install httpd-devel mod_ssl
end_message
break
elif [ $selection = "apache2.4.x" ]; then
# 2.4.xのインストール
#IUSリポジトリのインストール
start_message
echo "IUSリポジトリをインストールします"
yum -y install https://repo.ius.io/ius-release-el7.rpm
end_message
#IUSリポジトリをデフォルトから外す
start_message
echo "IUSリポジトリをデフォルトから外します"
cat >/etc/yum.repos.d/ius.repo <<'EOF'
[ius]
name = IUS for Enterprise Linux 7 - $basearch
baseurl = https://repo.ius.io/7/$basearch/
enabled = 1
repo_gpgcheck = 0
gpgcheck = 1
gpgkey = file:///etc/pki/rpm-gpg/RPM-GPG-KEY-IUS-7
[ius-debuginfo]
name = IUS for Enterprise Linux 7 - $basearch - Debug
baseurl = https://repo.ius.io/7/$basearch/debug/
enabled = 0
repo_gpgcheck = 0
gpgcheck = 1
gpgkey = file:///etc/pki/rpm-gpg/RPM-GPG-KEY-IUS-7
[ius-source]
name = IUS for Enterprise Linux 7 - Source
baseurl = https://repo.ius.io/7/src/
enabled = 0
repo_gpgcheck = 0
gpgcheck = 1
gpgkey = file:///etc/pki/rpm-gpg/RPM-GPG-KEY-IUS-7
EOF
end_message
#Nghttp2のインストール
start_message
echo "Nghttp2のインストール"
yum --enablerepo=epel -y install nghttp2
end_message
#mailcapのインストール
start_message
echo "mailcapのインストール"
yum -y install mailcap
end_message
# apacheのインストール
echo "apacheをインストールします"
echo ""
start_message
yum -y --enablerepo=ius install httpd24u
yum -y install openldap-devel expat-devel
yum -y --enablerepo=ius install httpd24u-devel httpd24u-mod_ssl
break
else
echo "どちらかを選択してください"
fi
done
start_message
echo "ファイルのバックアップ"
echo ""
cp /etc/httpd/conf/httpd.conf /etc/httpd/conf/httpd.conf.bk
echo "バージョンの非表示など"
echo ""
#sed -i -e "s|ServerName www.example.com:80|#ServerName www.example.com:80|" /etc/httpd/conf/httpd.conf
sed -i -e "350i #バージョン非表示" /etc/httpd/conf/httpd.conf
sed -i -e "351i ServerTokens ProductOnly" /etc/httpd/conf/httpd.conf
sed -i -e "352i ServerSignature off \n" /etc/httpd/conf/httpd.conf
#バーチャルホストの設定
cat >/etc/httpd/conf.d/${domain}.conf <<'EOF'
<VirtualHost *:80>
ServerName ドメイン名
ServerAlias www.ドメイン名
DocumentRoot /var/www/html
ErrorLog /var/log/httpd/error_log
CustomLog /var/log/httpd/access_log combined env=!no_log
<Directory "/var/www/html/">
AllowOverride All
Require all granted
#Options Includes ExecCGI FollowSymLinks
</Directory>
</VirtualHost>
EOF
#sed関数でドメインを挿入
sed -i -e "s|ServerName ドメイン名|ServerName ${domain}|" /etc/httpd/conf.d/${domain}.conf
sed -i -e "s|ServerAlias www.ドメイン名|ServerAlias www.${domain}|" /etc/httpd/conf.d/${domain}.conf
#SSLの設定変更(2.4.xの場合http2を有効化)
echo "ファイルのバックアップ"
echo ""
cp /etc/httpd/conf.modules.d/00-mpm.conf /etc/httpd/conf.modules.d/00-mpm.conf.bk
sed -i -e "s|LoadModule mpm_prefork_module modules/mod_mpm_prefork.so|#LoadModule mpm_prefork_module modules/mod_mpm_prefork.so|" /etc/httpd/conf.modules.d/00-mpm.conf
sed -i -e "s|#LoadModule mpm_event_module modules/mod_mpm_event.so|LoadModule mpm_event_module modules/mod_mpm_event.so|" /etc/httpd/conf.modules.d/00-mpm.conf
ls /etc/httpd/conf/
echo "Apacheのバージョン確認"
echo ""
httpd -v
echo ""
end_message
#gzip圧縮の設定
cat >/etc/httpd/conf.d/gzip.conf <<'EOF'
SetOutputFilter DEFLATE
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
SetEnvIfNoCase Request_URI\.(?:gif|jpe?g|png)$ no-gzip dont-vary
Header append Vary User-Agent env=!dont-var
EOF
#ユーザー作成
start_message
echo "centosユーザーを作成します"
USERNAME='centos'
PASSWORD=$(more /dev/urandom | tr -d -c '[:alnum:]' | fold -w 10 | head -1)
useradd -m -G apache -s /bin/bash "${USERNAME}"
echo "${PASSWORD}" | passwd --stdin "${USERNAME}"
echo "パスワードは"${PASSWORD}"です。"
#所属グループ表示
echo "所属グループを表示します"
getent group apache
end_message
#所有者の変更
start_message
echo "ドキュメントルートの所有者をcentos、グループをapacheにします"
chown -R centos:apache /var/www/html
end_message
# apacheの起動
echo "apacheを起動します"
start_message
systemctl start httpd.service
echo "apacheのステータス確認"
systemctl status httpd.service
end_message
#自動起動の設定
start_message
systemctl enable httpd
systemctl list-unit-files --type=service | grep httpd
end_message
#firewallのポート許可
echo "http(80番)とhttps(443番)の許可をしてます"
start_message
firewall-cmd --permanent --add-service=http
firewall-cmd --permanent --add-service=https
echo ""
echo "保存して有効化"
echo ""
firewall-cmd --reload
echo ""
echo "設定を表示"
echo ""
firewall-cmd --list-all
end_message
umask 0002
cat <<EOF
http://IPアドレス or ドメイン名
https://IPアドレス or ドメイン名
で確認してみてください
設定ファイルは
/etc/httpd/conf.d/ドメイン名.conf
となっています
ドキュメントルート(DR)は
/var/www/html
となります。
htaccessはドキュメントルートのみ有効化しています
有効化の確認
https://www.logw.jp/server/7452.html
vi /var/www/html/.htaccess
-----------------
AuthType Basic
AuthName hoge
Require valid-user
-----------------
ダイアログがでればhtaccessが有効かされた状態となります。
●HTTP2について
SSLのconfファイルに「Protocols h2 http/1.1」と追記してください
https://www.logw.jp/server/8359.html
例)
<VirtualHost *:443>
ServerName logw.jp
ServerAlias www.logw.jp
Protocols h2 http/1.1 ←追加
DocumentRoot /var/www/html
<Directory /var/www/html/>
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
ドキュメントルートの所有者:centos
グループ:apache
になっているため、ユーザー名とグループの変更が必要な場合は変更してください
EOF
echo "centosユーザーのパスワードは"${PASSWORD}"です。"
else
echo "CentOS7ではないため、このスクリプトは使えません。このスクリプトのインストール対象はCentOS7です。"
fi
fi
else
echo "このスクリプトのインストール対象はCentOS7です。CentOS7以外は動きません。"
cat <<EOF
検証LinuxディストリビューションはDebian・Ubuntu・Fedora・Arch Linux(アーチ・リナックス)となります。
EOF
fi
exec $SHELL -l