简体   繁体   中英

Rails hosting for small photo app

I'm making a small photo-gallery app. The photos will be hosted locally. Right now I use dreamhost but their rails implementation looks horrible. So I'm looking for other options. I know Heroku gives you one 'web dyno' for free, but they don't say anything about how much space you get. As I said, I want my photos stored locally with the app, I don't want to deal with s3 or other cloud storage.

there is no local storage with heroku - only temporary space. you'll need to use S3 or some off-site storage with heroku.

(and I agree, rails on DH is awful, even if you enable passenger)

Use Openshift to deploy your app checkout this deploying rails app in openshift

openshift provides one permanent data directory to store data and its free

If you are interested in VPS, Digital Ocean - https://www.digitalocean.com/ , provides excellent hosting starting from $5. And you can store your photos on the local disc.

There are very good tutorials on their site to get you started with.

查看Shelly Cloud: https : //shellycloud.com/您将获得持久存储(因此在磁盘出现故障时不会丢失数据),并且该部署针对Rails应用程序进行了优化。

With Heroku you can host images that you store in the repository of your project. Just try this:

rails new mytest

create a simple page and link to a test image in your /app/assets/images

heroku create mytest123  # <-- mytest1234 must be your unique app name

and now push the repo to Heroku:

git push origin master  # origin points automatically to Heroku after you created this

This is the easiest way to host small projects for free. Sometimes the Dyno takes some time to startup, and you need to point the domain to the right proxy, but these issues can be dealt with later.

S3 comes into play when you deal with uploaded content / images. For this use case, you need S3 which is out of the scope of your question too.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM