ちょっと小ネタ
cocoonをインストールするときなどに
“413 Request Entity Too Large”
こんなメッセージが出た時の対応
sudo nano /etc/nginx/sites-available/wordpress
以下の設定を追加入力
client_max_body_size 1024m;
server {
listen 80;
listen [::]:80;
server_name AAA.com www.AAA.com;
root /var/www/wordpress;
index index.php;
client_max_body_size 1024m;
location / {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php8.1-fpm.sock;
}
}
これで大丈夫かと
コメント