mirror of
https://github.com/php/doc-en.git
synced 2026-03-23 23:32:18 +01:00
added to global.ent via f8bdf4030e
Sorry translators for this extra work!
Note: Notes containing 'windows.php.net/downloads/pecl/releases' were
removed as the associated entity will disappear one day via https://github.com/php/doc-base/pull/143
81 lines
3.0 KiB
XML
81 lines
3.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<sect1 xml:id="install.cloud.azure" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<title>Azure App Services</title>
|
|
<para>
|
|
PHP is frequently used on Azure App Services (aka Microsoft Azure, Windows Azure, Azure Web Apps).
|
|
</para>
|
|
<para>Azure App Services manages pools of Windows Web Servers to host your web application, as an alternative to managing your own web server on your own Azure Compute VMs or other servers.
|
|
</para>
|
|
<para>PHP is already enabled for your Azure App Services web site automatically. In the Azure Portal, select your web site, and you can choose which version of PHP to use. You may want to choose a newer version than the default.
|
|
</para>
|
|
|
|
<para>As such, PHP and extensions will run on Azure App Services just as they will on other Windows servers.
|
|
|
|
However, the management interface for Azure App Services is different:
|
|
</para>
|
|
|
|
<itemizedlist spacing="compact">
|
|
<listitem>
|
|
<para>Azure portal: create, edit settings and delete web sites. <link xlink:href="&url.azure.portal;">Azure Portal</link>
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Kudu Dashboard: if the website has the URL
|
|
<literal><replaceable>site_name</replaceable>.azurewebsites.net</literal>,
|
|
the Kudu dashboard is
|
|
<literal>https://<replaceable>site_name</replaceable>.scm.azurewebsites.net/</literal>.
|
|
The dashboard provides access to debugging capabilities, file
|
|
management, and site extensions.
|
|
Site extensions are an Azure mechanism to add extra programs,
|
|
like PHP preview builds, to a website.
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>You can not use IIS Manager, Server Manager, or RDP.</para>
|
|
</listitem>
|
|
</itemizedlist>
|
|
|
|
<para>There is also a PHP SDK for programmatically using many Azure Services from your PHP code. See <link xlink:href="&url.azure.php.sdk;">Azure SDK for PHP</link>.
|
|
</para>
|
|
|
|
<para>For more information, see <link xlink:href="&url.azure.php;">Azure PHP Developer Center</link>
|
|
</para>
|
|
|
|
<sect2>
|
|
<title>WinCache</title>
|
|
<para>WinCache is enabled by default on Azure App Services and it is recommended that you leave it enabled.
|
|
|
|
If you install your own build of PHP, you should enable WinCache on that too.
|
|
</para>
|
|
</sect2>
|
|
|
|
<sect2>
|
|
<title>Custom PHP Build</title>
|
|
<para>You may upload your own PHP build to your D:\Home (C:\ is NOT writable). Then in the Azure Portal, set SCRIPT_PROCESSOR for .php to the absolute path of the php-cgi.exe file in your build.
|
|
</para>
|
|
</sect2>
|
|
|
|
</sect1>
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|