ファイルのアップロード上限を引き上げ
このコミットが含まれているのは:
コミット
ada0a5ef49
@ -21,7 +21,6 @@ use App\Mail\FathersApprovalMail;
|
||||
|
||||
class MeetingsController extends Controller {
|
||||
public function register (Request $r) {
|
||||
dd($r->all());
|
||||
if (!isset(session()->get('fathers')['id'])) {
|
||||
return ['status_code' => 400, 'error_messages' => ['ミーティングの登録に失敗しました。']];
|
||||
}
|
||||
|
@ -3,7 +3,7 @@ services:
|
||||
app:
|
||||
build: ./infra/php
|
||||
volumes:
|
||||
# - ./infra/php/php.ini:/usr/local/etc/php/php.ini
|
||||
- ./infra/php/php.ini:/usr/local/etc/php/php.ini
|
||||
- ./backend:/work
|
||||
|
||||
web:
|
||||
|
@ -25,7 +25,8 @@ server {
|
||||
index index.php;
|
||||
|
||||
charset utf-8;
|
||||
client_max_body_size 0;
|
||||
client_max_body_size 0
|
||||
fastcgi_read_timeout 99999;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.php?$query_string;
|
||||
|
@ -13,6 +13,7 @@ server {
|
||||
|
||||
charset utf-8;
|
||||
client_max_body_size 0;
|
||||
fastcgi_read_timeout 99999;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.php?$query_string;
|
||||
|
@ -1,6 +1,6 @@
|
||||
zend.exception_ignore_args = off
|
||||
expose_php = on
|
||||
max_execution_time = 30
|
||||
max_execution_time=9999999
|
||||
max_input_vars = 1000
|
||||
upload_max_filesize = -1
|
||||
post_max_size = -1
|
||||
|
新しいイシューから参照
ユーザーをブロックする