Rocky Linux 8 へ Nginx と PHP 8.1 をインストールする手順をメモしておきます。 PHP は remi からインストールしました。
Nginx をインストールします。
| dnf config-manager --add-repo https://s3.sig9.org/repos/nginx.repo
dnf install -y nginx
|
remi から PHP をインストールします。 敢えて現時点で最新のバージョン 8.1 をインストールしてみました。
| dnf -y install https://rpms.remirepo.net/enterprise/remi-release-8.rpm
dnf -y install php81
|
php-fpm の設定ファイルは /etc/opt/remi/php81/php-fpm.d/www.conf
にあります。 ユーザやグループ等の設定を書き換えます。 デフォルトでは listen.acl_users
で POSIX ACL が有効になっていた為、これを無効化して listen.owner
や listen.group
を利用出来るようにしています。
| sed -i -e "s/^user = apache/user = nginx/g" /etc/opt/remi/php81/php-fpm.d/www.conf
sed -i -e "s/^group = apache/group = nginx/g" /etc/opt/remi/php81/php-fpm.d/www.conf
sed -i -e "s/^;listen.owner = nobody/listen.owner = nginx/g" /etc/opt/remi/php81/php-fpm.d/www.conf
sed -i -e "s/^;listen.group = nobody/listen.group = nginx/g" /etc/opt/remi/php81/php-fpm.d/www.conf
sed -i -e "s/^;listen.mode = 0660/listen.mode = 0660/g" /etc/opt/remi/php81/php-fpm.d/www.conf
sed -i -e "s/^listen.acl_users = apache/;listen.acl_users = apache/g" /etc/opt/remi/php81/php-fpm.d/www.conf
|
Nginx の設定ファイルのうち、/etc/nginx/conf.d/default.conf
を以下のように修正します。 拡張子 .php
のファイルは UNIX ソケット経由で php-fpm へ転送します。
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 | cat << 'EOF' > /etc/nginx/conf.d/default.conf
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.php index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
root /usr/share/nginx/html;
fastcgi_pass unix:/var/opt/remi/php81/run/php-fpm/www.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
EOF
|
phpinfo を呼び出すテスト用ファイルを作成します。
| cat << 'EOF' > /usr/share/nginx/html/info.php
<?php
phpinfo();
?>
EOF
|
ここまでの準備が完了したら Nginx と php-fpm を起動&自動起動設定します。
| systemctl start nginx.service php81-php-fpm.service
systemctl enable nginx.service php81-php-fpm.service
|
ブラウザから http://ADDRESS/info.php
へアクセスし、phpinfo の内容が表示されれば正常です。
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 | server {
listen 80;
server_name localhost;
#access_log /var/log/nginx/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
|