Heroku部署PHP應用
今天在51cto上看了一篇關於技術博文,不經意間看到了heroku這個雲端平台,至於這個平台幹什麼的就囉嗦了。以下還是重點說如何透過heroku來部署PHP應用程式。
hrerku官網:https://www.heroku.com/
一、基本操作
已經熟悉heroku的朋友可以略過這步了
如圖所示,app頁面會有5個標籤導航
<code><span>$ </span>heroku login</code>
<code>$ git init $ heroku git:remote -<span>a</span> myadd-<span>one</span><span># </span> 或者 $ git remote <span>add</span> heroku <span>https</span>://git.heroku.com/myapp-<span>one</span>.git</code>
<code><span>$ </span>git add -<span>A</span><span>$ </span>git commit -m <span>"init myapp-one"</span></code>
<code><span>$ </span>echo <span>"{}"</span> > composer.json <span>$ </span>git add composer.json <span>$ </span>git commit -m <span>"add composer.json"</span></code>
<code>$ heroku buildpacks:<span>set</span> https:<span>//github.com/heroku/heroku-buildpack-php</span></code>
最後執行如下,命令,部署項目到線上<code><span>$ </span>echo <span>" web: php -S 0.0.0.0:$PORT -t site/api/html "</span> > <span>Procfile</span><span>$ </span>git add <span>Procfile</span><span>$ </span>git commit -m <span>"add Procfile to start program"</span></code>
以上本人親自嘗試配置成功過程,如有遺漏,還請包涵具體參考官方文件如下:PHP部署官方說明: https://devcenter.heroku.com/articles/getting-started- with-php#introductionHeroku PHP 建置套件位址: https://github.com/heroku/heroku-buildpack-phpheroku命令列工具使用說明: https://devcenter.heroku.com/categories/command -line').addClass('pre-numbering').hide();
$(this).addClass('has-numbering').parent().append($numbering);
for (i = 1; i ').text(i));
};
$numbering.fadeIn(1700);
});
});
以上就介紹了Heroku部署PHP應用,包含了面向的內容,希望對PHP教學有興趣的朋友有幫助。