0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[WordPress]NGINX+php-fpmの設定をメモする

Posted at

この記事は

  • 個人メモ。

関連記事

/etc/nginx/

  • nginx.confはバックアップファイル取得した
sudo cp nginx.conf nginx.conf.backup
  • nginx.conf中身(一部)
    • php-fpmときたらよく書くlocation ~~~は書いていない。
    • 書いても上手くwp-config.phpへアクセスできなかったので
      • (wp-setup-config.php)でDB情報とか書いた時。
    • あまり複雑にしないためにデフォルト同様記載していない。
# server nameも書いていない...
server_name _;

# 階層は例です。
# directoryとfileは作成した
root /var/www/html/wp;
  • conf.dもなにも編集していない。

php-fpm

  • ↓↓↓installしてから変更してない
$cat php-fpm.conf

# PHP-FPM FastCGI server
# network or unix domain socket configuration

upstream php-fpm {
        server unix:/run/php-fpm/www.sock;
}

wp-config.php


以上。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?