$user->phones()->save(new Phone(['home_id' => $home->id, 'phone' => '+79999999999']));
Phone::create(['user_id' => $user->id, 'home_id' => $home->id, 'phone' => '+79999999999']);
location ~ ^/upload/? {
try_files $uri @prod;
}
location @prod {
proxy_pass https://production-site.ru:443;
}