av一区二区在线观看_亚洲男人的天堂网站_日韩亚洲视频_在线成人免费_欧美日韩精品免费观看视频_久草视

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

PHP服務(wù)器篇:部署PHP應(yīng)用到線(xiàn)上Web服務(wù)器的方式

瀏覽:8日期:2022-09-16 10:50:37

部署PHP應(yīng)用到線(xiàn)上Web服務(wù)器的方式有很多種。

平臺(tái)即服務(wù)(PaaS)

PaaS提供運(yùn)行PHP Web應(yīng)用所需的系統(tǒng)和網(wǎng)絡(luò)環(huán)境,對(duì)PHP應(yīng)用和框架只需要做少量的配置即可。

現(xiàn)在PaaS已經(jīng)成為部署、托管和擴(kuò)展各種規(guī)模的PHP應(yīng)用的流行方式,可以在?resources部分查看PHP PaaS “平臺(tái)即服務(wù)”供應(yīng)商列表。

虛擬或獨(dú)立主機(jī)

如果你愿意或想學(xué)習(xí)系統(tǒng)管理,那么虛擬或獨(dú)立主機(jī)可以讓你完全控制自己的運(yùn)行環(huán)境。

nginx和PHP-FPM

PHP通過(guò)內(nèi)置的FastCGI進(jìn)程管理器(FPM),可以非常高效地和輕量級(jí)的高性能Web服務(wù)器nginx進(jìn)行通信。 nginx比Apache消耗更少的內(nèi)存,能更好的處理并發(fā)請(qǐng)求,這在內(nèi)存限制較多的虛擬主機(jī)環(huán)境中尤為重要。

閱讀更多nginx閱讀更多PHP-FPM學(xué)習(xí)如何配置安全的nginx和PHP-FPMApache和PHP

PHP和Apache是一個(gè)老搭檔,歷史悠久。Apache有很強(qiáng)的可配置性和大量的擴(kuò)展模塊, 是共享主機(jī)中常見(jiàn)的Web服務(wù)器,完美支持各種PHP框架和開(kāi)源應(yīng)用(如WordPress)。可惜的是,默認(rèn)情況下,Apache比nginx更耗資源,并發(fā)處理能力不強(qiáng)。

Apache有多種方式運(yùn)行PHP,最常見(jiàn)簡(jiǎn)單的方式是使用mod_php5的prefork MPM方式, 缺點(diǎn)是它對(duì)內(nèi)存的利用效率不高,如果你不想深入學(xué)習(xí)服務(wù)器的管理,那么這種最簡(jiǎn)單的方式就是你的最佳選擇了。注意,如果你使用mod_php5,最好使用 prefork MPM方式。

如果你想追求高性能和高穩(wěn)定性,那么也可以為Apache選擇與nginx類(lèi)似的FPM系統(tǒng)worker MPM或?event MPM,它們分別使用mod_fastcgi和mod_fcgid模塊。FPM方式可以更高效的利用內(nèi)存,運(yùn)行 速度更快,但是配置也相對(duì)復(fù)雜一些。

閱讀更多Apache深入學(xué)習(xí)多進(jìn)程模塊閱讀更多mod_fastcgi閱讀更多mod_fcgid共享主機(jī)

PHP非常流行,很少有服務(wù)器沒(méi)有安裝PHP的,因而有很多共享主機(jī),不過(guò)需要注意服務(wù)器上的PHP是否是最新穩(wěn)定 版本。共享主機(jī)允許多個(gè)開(kāi)發(fā)者把自己的網(wǎng)站部署在上面,這樣的好處是費(fèi)用非常便宜,壞處是你不知道將和哪些 網(wǎng)站共享主機(jī),因此需要仔細(xì)考慮機(jī)器負(fù)載和安全問(wèn)題。如果項(xiàng)目預(yù)算允許的話(huà),避免使用共享主機(jī)是上策。

Building and Deploying your Application

If you find yourself doing manual database schema changes or running your tests manually before updating your files (manually), think twice! With every additional manual task needed to deploy a new version of your app, the chances for potentially fatal mistakes increase. Whether you’re dealing with a simple update, a comprehensive build process or even a continuous integration strategy,?build automation?is your friend.

Among the tasks you might want to automate are:

Dependency managementCompilation, minification of your assetsRunning testsCreation of documentationPackagingDeploymentBuild Automation Tools

Build tools can be described as a collection of scripts that handle common tasks of software deployment. The build tool is not a part of your software, it acts on your software from ‘outside’.

There are many open source tools available to help you with build automation, some are written in PHP others aren’t. This shouldn’t hold you back from using them, if they’re better suited for the specific job. Here are a few examples:

Phing?is the easiest way to get started with automated deployment in the PHP world. With Phing you can control your packaging, deployment or testing process from within a simple XML build file. Phing (which is based on?Apache Ant) provides a rich set of tasks usually needed to install or update a web app and can be extended with additional custom tasks, written in PHP.

Capistrano?is a system for?intermediate-to-advanced programmers?to execute commands in a structured, repeatable way on one or more remote machines. It is pre-configured for deploying Ruby on Rails applications, however people are?successfully deploying PHP systems?with it. Successful use of Capistrano depends on a working knowledge of Ruby and Rake.

Dave Gardner’s blog post?PHP Deployment with Capistrano?is a good starting point for PHP developers interested in Capistrano.

Chef?is more than a deployment framework, it is a very powerful Ruby based system integration framework that doesn’t just deploy your app but can build your whole server environment or virtual boxes.

Chef resources for PHP developers:

Three part blog series about deploying a LAMP application with Chef, Vagrant, and EC2Chef Cookbook which installs and configures PHP 5.3 and the PEAR package management system

Further reading:

Automate your project with Apache AntMaven, a build framework based on Ant and?how to use it with PHPContinuous Integration

Continuous Integration is a software development practice where members of a team integrate their work frequently, usually each person integrates at least daily — leading to multiple integrations per day. Many teams find that this approach leads to significantly reduced integration problems and allows a team to develop cohesive software more rapidly.

– Martin Fowler

There are different ways to implement continuous integration for PHP. Recently?Travis CI?has done a great job of making continuous integration a reality even for small projects. Travis CI is a hosted continuous integration service for the open source community. It is integrated with GitHub and offers first class support for many languages including PHP.

Further reading:

Continuous Integration with JenkinsContinuous Integration with Teamcity
標(biāo)簽: PHP
相關(guān)文章:
主站蜘蛛池模板: 国产视频三区 | 午夜亚洲 | 国产精品久久久久久久久久久久久 | 91在线一区 | 一级午夜aaa免费看三区 | 国产乱精品一区二区三区 | 黄色片av| www.av7788.com| 日本一二区视频 | 亭亭五月激情 | 福利视频网站 | 在线观看视频91 | 日日夜夜天天 | 亚洲一区二区三区免费 | 黑人巨大精品欧美一区二区免费 | 日韩欧美高清 | 色资源站 | 久久精品男人的天堂 | 久久精品在线播放 | 日本成人免费观看 | 天天天天天操 | 欧美视频一区 | 欧美区日韩区 | 天天拍天天草 | 国产精品国产精品国产专区不蜜 | 久久精品亚洲成在人线av网址 | 黄色a三级 | 欧美一区二区三区久久精品视 | 中文字幕免费视频 | 亚洲成人av一区二区 | 在线欧美日韩 | 欧美黄在线观看 | 久久久久久久久久一区二区 | 亚洲视频在线一区 | 亚洲精品播放 | 国产不卡在线观看 | 久久在线| 91精品导航 | 欧美人成在线视频 | 欧美久久久久久 | 国产伦精品一区二区三区精品视频 |