16

I love using Heroku. I love the simplicity of doing git push into the server and have the Ruby on Rails app up and running.

I am doing a simple HTML/JS application and I am wondering if there is any free hosting that allows this simplicity of pushing the app just by doing git push.

4

1 回答 1

12

这些应该回答你的问题:

  1. Heroku Cedar 上的静态站点

    首先,让我们将您的网站变成一个 PHP“应用程序”:

    $ touch index.php

    接下来,我们可以完全禁用 Apache 的 PHP 引擎:

    $ echo 'php_flag engine off' > .htaccess

    当您将其推送时,您将拥有一个裸露的 Apache 实例,将您的站点内容提供给全世界。最好的是,您可以在任何传统的共享托管平台上执行所有愚蠢的 .htaccess 技巧。

  2. heroku-静态站点

    一个简单的 ruby​​ + rack 应用程序,用于为基本的静态网站提供服务

您可能还想查看github 页面,该页面提供免费的静态托管,只需git push. github 页面相对于 Heroku 的优势在于不会有任何Dyno Idling

于 2012-08-23T05:18:16.587 回答