developmentseed / osm-seed

A collection of Dockerfiles to run a containerized version of OpenStreetMap
https://devseed.com/osm-seed-chart/
MIT License
147 stars 33 forks source link

Add FTP server to serve for minute/planet replication files #312

Closed Rub21 closed 6 months ago

Rub21 commented 7 months ago

Currently, most of our approach involves using AWS to store the minute replication files. In order to test the minute replication locally, we need to serve the files on an FTP server for consumption by other services.

cc. @batpad

batpad commented 7 months ago

@Rub21 I'm not sure why we need an "FTP" server - why can't we just put the replication files in a folder and serve them over http? Like planet.openstreetmap.org or so - not sure why it needs "FTP" here. FTP introduces security issues and general pain, not sure why we can't just copy to a folder on the machine that is then served over regular apache / nginx ?

Rub21 commented 7 months ago

Yes, you are right. It needs to be only some nginx or lighttpd to serve those static files. Looks like FTP server sounds more broadly.

Rub21 commented 6 months ago

done!