Almalinux 9 WordPressをインストールする方法
環境
Almalinux 9.2
php 8.1
nginx 1.20
操作方法
1.nginxの設定
# sudo vi /etc/nginx/conf.d/hoge.com.conf
2.以下の内容を記載します
server { server_name server_domain_name_or_IP; root /var/www/wordpress; index index.html index.htm index.nginx-debian.html index.php; location / { try_files $uri $uri/ /index.php$is_args$args; } location = /favicon.ico { log_not_found off; access_log off; } location = /robots.txt { log_not_found off; access_log off; allow all; } location ~* \.(css|gif|ico|jpeg|jpg|js|png)$ { expires max; log_not_found off; } location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php-fpm/www.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }
3.nginxの設定ファイルをテストします
sudo nginx -t
nginxを再起動します
sudo systemctl restart nginx
4.WordPressをダウンロードしてインストールする
cd /tmp sudo curl -LO https://ja.wordpress.org/latest-ja.zip
wordpressディレクトリを作成します
sudo tar xzvf latest.tar.gz -C /var/www/
wp-config.phpを設定します
cd /var/www/wordpress/
sudo cp wp-config-sample.php wp-config.php
ディレクトリの権限を設定します
sudo chown -R nginx:nginx /var/www/wordpress/
5.WordPressの秘密鍵を生成します
sudo curl -s https://api.wordpress.org/secret-key/1.1/salt
sudo nano wp-config.php
秘密鍵を下記に設定します
define('AUTH_KEY', 'put your unique phrase here'); define('SECURE_AUTH_KEY', 'put your unique phrase here'); define('LOGGED_IN_KEY', 'put your unique phrase here'); define('NONCE_KEY', 'put your unique phrase here'); define('AUTH_SALT', 'put your unique phrase here'); define('SECURE_AUTH_SALT', 'put your unique phrase here'); define('LOGGED_IN_SALT', 'put your unique phrase here'); define('NONCE_SALT', 'put your unique phrase here');
データベース情報を設定します
define('DB_NAME', 'wordpress'); /** MySQL database username */ define('DB_USER', 'wordpressuser'); /** MySQL database password */ define('DB_PASSWORD', 'password'); ... define('FS_METHOD', 'direct');
6.Certbotをインストールします
# sudo dnf install certbot python3-certbot-nginx -y
SSL証明書を生成します
sudo certbot --nginx -d hoge.com