Dev (#7)
* Initial PHP support document including support timelines for PHP 7.0, PHP 7.1 and PHP 7.2
This commit is contained in:
Родитель
d7f824a09a
Коммит
ab86dfb588
31
README.md
31
README.md
|
@ -1,28 +1,33 @@
|
|||
# App Service on Linux
|
||||
|
||||
# Linux App Service Frenquently Asked Questions
|
||||
## Frequently Asked Questions
|
||||
|
||||
* [Web App for Containers Authenticate with Azure Container Registry using a Service Principal](https://github.com/Azure/app-service-linux-docs/blob/master/service_principal_auth_acr.md)
|
||||
* [App Service Docker-Compose Web App Handles Container Dependencies](https://github.com/Azure/app-service-linux-docs/blob/master/docker_compose_depends_on.md)
|
||||
* [Store MySQL password in KeyVault and Reference it from Linux Web App](https://github.com/Azure/app-service-linux-docs/blob/master/keyvault_reference_in_linux_app_service.md)
|
||||
* [How Does Multi-container Web App Determine Which Container to Expose to Public](https://github.com/Azure/app-service-linux-docs/blob/master/how_multicontainer_webapp_determine_web_container.md)
|
||||
* [Mount an Azure Files or Azure Blob Account to Multi-container Web App](https://github.com/Azure/app-service-linux-docs/blob/master/use_byos_for_multicontainer_web_app.md)
|
||||
* [Best Practices for Hosting WordPress Site on Azure App Service](https://github.com/Azure/app-service-linux-docs/blob/master/wordpress_performance_best_practices.md)
|
||||
* [Web App for Containers Authenticate with Azure Container Registry using a Service Principal](./service_principal_auth_acr.md)
|
||||
* [App Service Docker-Compose Web App Handles Container Dependencies](./docker_compose_depends_on.md)
|
||||
* [Store MySQL password in KeyVault and Reference it from Linux Web App](./keyvault_reference_in_linux_app_service.md)
|
||||
* [How Does Multi-container Web App Determine Which Container to Expose to Public](./how_multicontainer_webapp_determine_web_container.md)
|
||||
* [Mount an Azure Files or Azure Blob Account to Multi-container Web App](./use_byos_for_multicontainer_web_app.md)
|
||||
* [Best Practices for Hosting WordPress Site on Azure App Service](./wordpress_performance_best_practices.md)
|
||||
|
||||
# Contributing
|
||||
## Runtime Support
|
||||
|
||||
* [PHP](./php_support.md)
|
||||
|
||||
## Contributing
|
||||
|
||||
This project welcomes contributions and suggestions. Most contributions require you to agree to a
|
||||
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
|
||||
the rights to use your contribution. For details, visit https://cla.microsoft.com.
|
||||
the rights to use your contribution. For details, visit [https://cla.microsoft.com](https://cla.microsoft.com).
|
||||
|
||||
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide
|
||||
a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions
|
||||
provided by the bot. You will only need to do this once across all repos using our CLA.
|
||||
provided by the bot. You will only need to do this once across all repositories using our CLA.
|
||||
|
||||
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
|
||||
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
|
||||
contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
|
||||
|
||||
# Legal Notices
|
||||
## Legal Notices
|
||||
|
||||
Microsoft and any contributors grant you a license to the Microsoft documentation and other content
|
||||
in this repository under the [Creative Commons Attribution 4.0 International Public License](https://creativecommons.org/licenses/by/4.0/legalcode),
|
||||
|
@ -32,9 +37,9 @@ see the [LICENSE](LICENSE) file, and grant you a license to any code in the repo
|
|||
Microsoft, Windows, Microsoft Azure and/or other Microsoft products and services referenced in the documentation
|
||||
may be either trademarks or registered trademarks of Microsoft in the United States and/or other countries.
|
||||
The licenses for this project do not grant you rights to use any Microsoft names, logos, or trademarks.
|
||||
Microsoft's general trademark guidelines can be found at http://go.microsoft.com/fwlink/?LinkID=254653.
|
||||
Microsoft's general trademark guidelines can be found at [http://go.microsoft.com/fwlink/?LinkID=254653](http://go.microsoft.com/fwlink/?LinkID=254653).
|
||||
|
||||
Privacy information can be found at https://privacy.microsoft.com/en-us/
|
||||
Privacy information can be found at [https://privacy.microsoft.com/en-us/](https://privacy.microsoft.com/en-us/)
|
||||
|
||||
Microsoft and any contributors reserve all other rights, whether under their respective copyrights, patents,
|
||||
or trademarks, whether by implication, estoppel or otherwise.
|
||||
|
|
|
@ -0,0 +1,21 @@
|
|||
# PHP on App Service
|
||||
|
||||
## PHP Update Policy
|
||||
|
||||
App Service upgrades the underlying PHP runtime of your application as part of the regular platform updates. As a result of this regular update process, your application will be automatically updated to the latest patch version of PHP available in the platform.
|
||||
|
||||
### End of Extended Support
|
||||
|
||||
Once a version of PHP has reached it's end of extended support your application will be upgraded to the next recommended supported minor version.
|
||||
|
||||
For example on February 01, 2020 any application running on `PHP 7.0` or `PHP 7.1` will be upgraded to `PHP 7.3`
|
||||
|
||||
## Support Timeline
|
||||
|
||||
| Version | Support Status | End of Official Support | End of Extended Support | OS Support |
|
||||
|---------| ---------------- |:------------------------:|:-----------------------:| ---------- |
|
||||
| PHP 7.0 | Extended Support | December 03, 2018 | February 01, 2020 | Windows & Linux |
|
||||
| PHP 7.1 | Official Support | December 01, 2019 | February 01, 2020 | Windows & Linux |
|
||||
| PHP 7.2 | Official Support | November 30, 2020 | February 01, 2021 | Windows & Linux |
|
||||
|
||||
[PHP Official Support timeline](https://www.php.net/supported-versions.php)
|
Загрузка…
Ссылка в новой задаче