B
B
Barido2017-09-30 08:25:16
Angular
Barido, 2017-09-30 08:25:16

Where to store many large files?

There are files, the files themselves are not too big, about 1 Gb on average. In total, it turns out - several terabytes. Where to store them, what hosting to choose? Preferably foreign. How much will it cost per month?

Amazon doesn't seem to fit.

Answer the question

In order to leave comments, you need to log in

5 answer(s)
D
Dmitry Luzanov, 2019-06-20
@zlodiak

You have specified that home has a catalog child, and you want that catalog to appear in place of the parent (i.e., home). So it doesn't work. You need to add in the home template for its descendants.<router-outlet></router-outlet>

Component({
  selector: 'home',
  template: `
    <div>
      <h1>Home</h1>
      <h3>Total users: # {{users?.length}}</h3>
    </div>

    <router-outlet></router-outlet>
  `
})

Or maybe like this, if you try to follow your idea:
RouterModule.forRoot([
      { path: 'login', component: LoginViewComponent },
      { path: 'home', component: HomeViewComponent,
      // children: [
      //   {
      //     path: 'catalog',
      //     component: CatalogViewComponent           
      //   }
      // ]
      },
      { path: 'home/catalog', component: CatalogViewComponent },
      { path: '**', redirectTo: 'login' }
    ])

But this one doesn't work very well :c

A
alejandro68, 2017-09-30
@alejandro68

In Russia, cloud storage will be cheaper than in Amazon
https://clodo.ru/company/news/tsena-Cloud-Storage-...
Well, the cheapest option is to take dedicated from OVH/Hetzner/Online
if you calculate the disk size the closest to the volume of stored files - this will be the cheapest option of all possible.
Of the minuses - the impossibility of flexible manipulation, unlike clouds. For example, the impossibility of a simple hosting adjustment with a sharp increase in the number of stored files.
With the installation fee - replacing the server within less than a year reduces the benefit of such hosting.

P
Puma Thailand, 2017-09-30
@opium

Delic to hatzner from 30 euros per month with two drives of three TB in the auction

P
Pasha-e-ma-e, 2018-12-03
@Pasha-e-ma-e

many places you can.
https://vds.ultrazoom.ru/Order - service
calculator

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question