install/cloud/azure.xml
5d591c30aeef70c8cd325ab914c102333cc9bd8f
...
...
@@ -1,15 +1,57 @@
1
1
<?xml version="1.0" encoding="utf-8"?>
2
2
<!-- $Revision$ -->
3
-
<sect1 xml:id="install.cloud.azure" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
4
-
<title>Microsoft Azure</title>
3
+
<sect1 xml:id="install.cloud.azure" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
4
+
<title>Azure App Services</title>
5
5
<para>
6
-
PHP installs on the <link xlink:href="&url.cloud.azure;">Azure cloud platform</link>.
6
+
PHP is frequently used on Azure App Services (aka Microsoft Azure, Windows Azure, Azure Web Apps).
7
7
</para>
8
-
<para>
9
-
See also the <link xlink:href="&url.cloud.azure.sdk;">Azure SDK for PHP</link>.
8
+
<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.
9
+
</para>
10
+
<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.
11
+
</para>
12
+

13
+
<para>As such, PHP and extensions will run on Azure App Services just as they will on other Windows servers.
14
+

15
+
Much of the knowledgebase is also portable, so see the <link linkend="install.windows.troubleshooting">Windows Troubleshooting Page</link> too.
16
+

17
+
However, the management interface for Azure App Services is different:
18
+
</para>
19
+

20
+
<itemizedlist spacing="compact">
21
+
<listitem>
22
+
<para>Azure portal: create, edit settings and delete web sites. <link xlink:href="https://portal.azure.com/">Azure Portal</link>
23
+
</para>
24
+
</listitem>
25
+
<listitem>
26
+
<para>Kudu Dashboard: [your web site name].azurewebsites.net Then, the Kudu dashboard is <link xlink:href="https://your_web_site_name.scm.azurewebsites.net/">https://[your web site name].scm.azurewebsites.net/</link>. The Dashboard gives you access to some debugging capabilities, file management and site extensions. Site extensions are an Azure mechanism to add extra programs, like PHP preview builds, to your web site.
27
+
</para>
28
+
</listitem>
29
+
<listitem>
30
+
<para>You can not use IIS Manager, Server Manager, or RDP.</para>
31
+
</listitem>
32
+
</itemizedlist>
33
+

34
+
<para>There is also a PHP SDK for programmatically using many Azure Services from your PHP code. See <link xlink:href="https://github.com/Azure/azure-sdk-for-php">Azure SDK for PHP</link>.
35
+
</para>
36
+
37
+
<para>For more information, see <link xlink:href="https://azure.microsoft.com/en-us/develop/php/">Azure PHP Developer Center</link>
38
+
</para>
39
+

40
+
<sect2>
41
+
<title>WinCache</title>
42
+
<para>WinCache is enabled by default on Azure App Services and it is recommended that you leave it enabled.
43
+

44
+
If you install your own build of PHP, you should enable WinCache on that too.
45
+
</para>
46
+
</sect2>
47
+

48
+
<sect2>
49
+
<title>Custom PHP Build</title>
50
+
<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.
10
51
</para>
11
-
</sect1>
52
+
</sect2>
12
53

54
+
</sect1>
13
55
<!-- Keep this comment at the end of the file
14
56
Local variables:
15
57
mode: sgml
16
58