-
Notifications
You must be signed in to change notification settings - Fork 0
/
apache_php_min.sh
261 lines (204 loc) · 6.49 KB
/
apache_php_min.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
#!/bin/sh
#rootユーザーで実行 or sudo権限ユーザー
<<COMMENT
作成者:サイトラボ
URL:https://www.site-lab.jp/
URL:https://www.logw.jp/
注意点:conohaのポートは全て許可前提となります。もしくは80番、443番の許可をしておいてください。システムのfirewallはオン状態となります
目的:システム更新+apache2.4.6+php7系のインストール
・apache2.4
・mod_sslのインストール
・PHP7系のインストール
COMMENT
start_message(){
echo ""
echo "======================開始======================"
echo ""
}
end_message(){
echo ""
echo "======================完了======================"
echo ""
}
#プロンプトをechoを使って表示
echo -n "ドメイン名を入力してください":
#入力を受付、その入力を「domain」に代入
read domain
#結果を表示
echo $domain
#EPELリポジトリのインストール
start_message
yum remove -y epel-release
yum -y install epel-release
end_message
#Remiリポジトリのインストール
start_message
yum -y install http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
yum -y install yum-utils
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 ""
start_message
yum -y install httpd
yum -y install openldap-devel expat-devel
yum -y install httpd-devel mod_ssl
echo "ファイルのバックアップ"
echo ""
cp /etc/httpd/conf/httpd.conf /etc/httpd/conf/httpd.conf.bk
echo "htaccess有効化した状態のconfファイルを作成します"
echo ""
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の設定変更
echo "ファイルのバックアップ"
echo ""
mv /etc/httpd/conf.modules.d/00-mpm.conf /etc/httpd/conf.modules.d/00-mpm.conf.bk
cat >/etc/httpd/conf.modules.d/00-mpm.conf <<'EOF'
# Select the MPM module which should be used by uncommenting exactly
# one of the following LoadModule lines:
# prefork MPM: Implements a non-threaded, pre-forking web server
# See: http://httpd.apache.org/docs/2.4/mod/prefork.html
#LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
# worker MPM: Multi-Processing Module implementing a hybrid
# multi-threaded multi-process web server
# See: http://httpd.apache.org/docs/2.4/mod/worker.html
#
#LoadModule mpm_worker_module modules/mod_mpm_worker.so
# event MPM: A variant of the worker MPM with the goal of consuming
# threads only for connections with active processing
# See: http://httpd.apache.org/docs/2.4/mod/event.html
#
LoadModule mpm_event_module modules/mod_mpm_event.so
EOF
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
PS3="インストールしたいPHPのバージョンを選んでください > "
ITEM_LIST="PHP7.2 PHP7.3"
select selection in $ITEM_LIST
do
if [ $selection = "PHP7.2" ]; then
# php7系のインストール
echo "phpをインストールします"
echo ""
start_message
yum -y install --enablerepo=remi,remi-php72 php php-mbstring php-xml php-xmlrpc php-gd php-pdo php-pecl-mcrypt php-mysqlnd php-pecl-mysql
echo "phpのバージョン確認"
echo ""
php -v
echo ""
end_message
break
elif [ $selection = "PHP7.3" ]; then
# php7系のインストール
echo "phpをインストールします"
echo ""
start_message
yum -y install --enablerepo=remi,remi-php73 php php-mbstring php-xml php-xmlrpc php-gd php-pdo php-pecl-mcrypt php-mysqlnd php-pecl-mysql
echo "phpのバージョン確認"
echo ""
php -v
echo ""
end_message
break
else
echo "どちらかを選択してください"
fi
done
# phpinfoの作成
start_message
touch /var/www/html/info.php
echo '<?php phpinfo(); ?>' >> /var/www/html/info.php
cat /var/www/html/info.php
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
cat <<EOF
http://IPアドレス/info.php
https://IPアドレス/info.php
で確認してみてください
ドキュメントルート(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について
このApacheはHTTP/2に非対応となります。ApacheでHTTP2を使う場合は2.4.17以降が必要となります。
これにて終了です
ドキュメントルートの所有者:グループは「root」になっているため、ユーザー名とグループを変更してください
EOF
exec $SHELL -l