Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

amazon s3 upload error ssl certificate

//in laravel/config/filesystems.php
//add this line in S3
'scheme' => 'http' // to disable SSL verification on local development

//Your filesystem.php should look like this
's3' => [
    'driver' => 's3',
    'key' => env('AWS_ACCESS_KEY_ID'),
    'secret' => env('AWS_SECRET_ACCESS_KEY'),
    'region' => env('AWS_DEFAULT_REGION'),
    'bucket' => env('AWS_BUCKET'),
    'url' => env('AWS_URL'),
    'scheme' => 'http' // to disable SSL verification on local development
],
//When you run it on your server which has SSL verification, you need to comment 'scheme' line.
Comment

PREVIOUS NEXT
Code Example
Javascript :: mongodb aggregate $filter check if exists 
Javascript :: signalr 
Javascript :: javascript dom methods list 
Javascript :: how to remove the elements from array and how to replace a new element in javascript 
Javascript :: how-to-close-current-tab-in-a-browser-window 
Javascript :: how to create my own filter in js 
Javascript :: app.js not found in laravel 8 
Javascript :: luhn algorithm javascript 
Javascript :: form action using react 
Javascript :: vue resources post 
Javascript :: change the focus to next in angular forms 
Javascript :: difference between w component did update and did mount 
Javascript :: javascript regular expression methods 
Javascript :: add text to innerhtml javascript 
Javascript :: public JsonResult what is the return 
Javascript :: 188.4 - 93.1 
Python :: ignore filter warnings jupyter notebook 
Python :: pandas read tsv 
Python :: suppress pandas future warnings 
Python :: display maximum columns pandas 
Python :: drop a range of rows pandas 
Python :: time format conversion in python 
Python :: python start simplehttpserver 
Python :: how to get micro symbol in python 
Python :: combine path python 
Python :: keras plot history 
Python :: gdscript string format 
Python :: python download from web 
Python :: copy whole directory python 
Python :: python hide console 
ADD CONTENT
Topic
Content
Source link
Name
8+2 =