You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
353 B
JavaScript
14 lines
353 B
JavaScript
import AWS from 'aws-sdk';
|
|
|
|
const storage = new AWS.S3({
|
|
endpoint: 'https://storage.yandexcloud.net',
|
|
accessKeyId: 'YCAJETluKbNj6pNd9GLMvFToy',
|
|
secretAccessKey: 'YCPRu1qIZ_p4OGLMdAYb_zjv3-lSAh3HnvYy-J-I',
|
|
region: 'ru-central1',
|
|
httpOptions: {
|
|
timeout: 10000,
|
|
connectTimeout: 10000
|
|
},
|
|
});
|
|
|
|
export default storage; |