Categories
Uncategorized

Bitnami WordPress + NGINXのアップロードサイズの上限を変更

All-in-one WP Migrationのimportするためにアップロードサイズの最大サイズがひっかかったので、設定ファイルをいじった。私が使っているのはBitnamiのWordPress NGINXのパッケージなので対応する公式ドキュメントは以下のもの。

https://docs.bitnami.com/bch/apps/wordpress-pro/administration/increase-upload-limit-php/

/opt/bitnami/php/etc/php.ini を以下のように変更

; Maximum size of POST data that PHP will accept.

post_max_size = 16M
; Maximum allowed size for uploaded files.

upload_max_filesize = 16M

/opt/bitnami/nginx/conf/nginx.conf を以下のように変更

http {

...

client_max_body_size 16M;

...

サーバースタックを再起動

sudo /opt/bitnami/ctlscript.sh restart

Leave a Reply

Your email address will not be published. Required fields are marked *