PHP with Apache on Ubuntu 22.04 from Zend by Perforce provides a turnkey solution for running PHP in the cloud. This supported PHP runtime includes the option to install any of PHP 7.2, 7.3, 7.4, 8.0, 8.1, 8.2, or 8.3, and can scale seamlessly across your cloud resources.
PHP with Apache on Ubuntu 22.04 from Zend by Perforce provides a turnkey solution for running PHP in the cloud. This supported PHP runtime includes the option to install any of PHP 7.2, 7.3, 7.4, 8.0, 8.1, 8.2, or 8.3, and can scale seamlessly across your cloud resources. ZendPHP gives PHP developers and DevOps engineers the tools needed to easily orchestrate clusters of PHP servers as microservices or autoscaling applications.
Highlights
ZendPHP builds include community or back-ported patches against known CVEs for a minimum of two years beyond community support end of life.
Purpose-built for cloud orchestration, ZendPHP images offer advanced tooling to help you streamline, automate, and accelerate continuous delivery cycles.
ZendPHP builds include fully customizable Terraform templates, meaning easy orchestration for your PHP-based application clusters.
AWS Marketplace now accepts line of credit payments through the PNC Vendor Finance program. This program is available to select AWS customers in the US, excluding NV, NC, ND, TN, & VT.
Pricing is based on actual usage, with charges varying according to how much you consume. Subscriptions have no end date and may be canceled any time. Alternatively, you can pay upfront for a contract, which typically covers your anticipated usage for the contract duration. Any usage beyond contract will incur additional usage-based costs.
Additional AWS infrastructure costs may apply. Use the AWS Pricing Calculator to estimate your infrastructure costs.
You pay by the hour for this software running on your chosen Amazon EC2 instance. Pricing is not tiered by feature set. Instead, each dimension maps to a specific EC2 instance type, so your rate depends on the instance size and family you select. Options span general-purpose (m3, m4, t2), compute-optimized (c3, c4), memory-optimized (r3, r4), and storage-optimized (i2, d2) families. Within each family, larger instance sizes carry higher hourly rates. You run the software as long as needed and pay only for the hours used.
Top-of-mind questions for buyers
What do I get for the hourly rate on each EC2 instance type?
You get the ZendPHP software with Apache running on Ubuntu 22.04, licensed by the hour on your chosen EC2 instance. The instance type sets the underlying compute, memory, and storage. Larger instances give more resources and carry a higher hourly software rate.
Am I charged when my instance is stopped or paused?
The software rate meters running instance-hours only. A fully stopped instance does not accrue software charges. You may still pay underlying AWS storage fees for the stopped instance's volumes, but that is separate from the hourly software license.
How do I move to a larger or different instance type later?
Each dimension bills for the specific EC2 instance type you run. To change size or family, you launch or resize onto a different instance type. Your hourly rate then matches that new instance. Billing follows the instance you actually run, hour by hour.
help.zend.com
Helpful?
Vendor refund policy
n/a
How can we make this page better?
Tell us how we can improve this page, or report an issue with this product.
Give us feedbackReport a problem with this product or seller
Legal
Vendor terms and conditions
Upon subscribing to this product, you must acknowledge and agree to the terms and conditions outlined in the vendor's End User License Agreement (EULA).
Content disclaimer
Vendors are responsible for their product descriptions and other product content. AWS does not warrant that vendors' product descriptions or other product content are accurate, complete, reliable, current, or error-free.
An AMI is a virtual image that provides the information required to launch an instance. Amazon EC2 (Elastic Compute Cloud) instances are virtual servers on which you can run your applications and workloads, offering varying combinations of CPU, memory, storage, and networking resources. You can launch as many instances from as many different AMIs as you need.
Version release notes
Updated PHP versions
PHP 8.3.13
PHP 8.2.25
PHP 8.1.30
PHP 8.0.30.3
PHP 7.4.33.7
PHP 7.3.33.12
PHP 7.2.34.20
Additional details
Usage instructions
To access the instance, you will need to navigate to the EC2 console and open your launched instance. Once health checks have passed, copy the public IP address in order to SSH into your launched instance. Ex SSH -i yourkeypair ubuntu@ip_address
All ZendPHP cloud images set up a default virtual host located in the directory /var/www. Users can upload a PHP application to that directory and immediately have a running web application.
Additionally, ZendPHP cloud images come with several scripts to allow you to switch PHP versions and manage virtual hosts and SSL details. These are all located in /usr/local/bin and MUST be run as root or via the sudo command.
Zend provides the following scripts:
zendphp_credentials
zendphp-vhost
zendphp-switch
zendphp_credentials:
On first invocation, this script requests credentials from the ZendPHP credentialing service. If successful, it then installs them such that your package manager uses them when retrieving ZendPHP packages. After a successful operation, run the command that updates your package manager's cache (e.g., apt-get update for DEB-based distributions and yum update for RPM-based distributions).
On subsequent invocations, it renews your credentials for a period of one month.
Important In most cases, you do not need to interact with this script.
You need to run the script during initial provisioning and once every 4 weeks thereafter via a cronjob.
If you need to use it manually, run zendphp_credentials help at the command line.
zendphp-vhost:
The zendphp-vhost script allows you to add, rename, or remove virtual hosts. The script also fetches and configures a TLS certificate for the vhost via the Let's Encrypt Certificate Authority (CA). If the query fails, the script uses the self-signed localhost certificate.
Use
zendphp-vhost (action) (vhost domain) (port) (options) (email)
Parameters
action: One of: info, add, remove, chgname, or chgport.
vhost domain: Domain for which to create, modify, or remove a virtual host.
port: If set, configures the virtual host to this port; otherwise sets the port to the default (80).
options: One of http or https. This option also configures the port for http or https. If set to https the script retrieves the certificate from Let's Encrypt.
email: Webmaster e-mail. If not set, the script uses the default webmaster@localhost.
Examples
Show currently enabled vhosts:
$ zendphp-vhost info
Create new vhost (use default parameters):
$ zendphp-vhost add somehost.somedomain.com
Create new vhost (preconfigures port 443 and fetch certificate from Let's Encrypt CA):
$ zendphp-vhost add somehost.somedomain.com 443 https webmaster@somedomain.com
Change vhost name (also requests a new TLS certificate from Let's Encrypt and revokes/deletes the old one):
$ zendphp-vhost chgname somehost.somedomain.com someotherhost.somedomain.com
Change vhost port to non-secure (non-ssl enabled) port:
$ zendphp-vhost chgport somehost.somedomain.com 81 http
Change vhost port to secure (ssl) port (also runs certbot command to configure certificate):
$ zendphp-vhost chgport somehost.somedomain.com 444 https
Remove virtual host (also asks whether to preserve or delete the document root directory as well as configuration files, and asks to revoke/delete the previously installed certificate):
$ zendphp-vhost remove somehost.somedomain.com
zendphp-switch:
The zendphp-switch script allows you to switch between ZendPHP versions.
Use
zendphp-switch (action) (version) (vhost domain)
Parameters
action: One of: to, off.
version: PHP version (currently possible: 7.2, 7.3, 7.4, 8.0, 8.1, 8.2 or 8.3)
vhost domain: Virtual host you want to switch the PHP version on.
Examples
Switch from current ZendPHP version to 7.4:
$ zendphp-switch to 7.4 somehost.somedomain.com
Switch ZendPHP 7.4 FPM process off:
$ zendphp-switch off 7.4
AWS Support is a one-on-one, fast-response support channel that is staffed 24x7x365 with experienced and technical support engineers. The service helps customers of all sizes and technical abilities to successfully utilize the products and features provided by Amazon Web Services.
PHP with Apache on Ubuntu 22.04 (BYOL) from Zend by Perforce provides a turnkey solution for running PHP in the cloud. This supported PHP runtime includes the option to install any of PHP 7.2, 7.3, 7.4, 8.0, 8.1, 8.2, or 8.3, and can scale seamlessly across your cloud resources.
This product has charges associated with it for seller support. The Windows Server 2022 with IIS and PHP AMI provides a robust environment for hosting dynamic web applications and services. With integrated IIS, it ensures optimal performance and enhanced security for your web hosting needs. This AMI comes pre-configured with PHP, enabling seamless execution of PHP scripts and applications. Ideal for developers and system administrators, it supports various frameworks and content management systems, such as WordPress and Laravel. With the ability to scale on-demand within the EC2 cloud, businesses can efficiently manage workloads while reducing operational costs. Leverage the power of Windows Server 2022 for your next project and unlock the potential of your web applications with unmatched reliability and performance.
PHP with Apache on RHEL 8 (BYOL) from Zend by Perforce provides a turnkey solution for running PHP in the cloud. This supported PHP runtime includes the option to install any of PHP 7.2, 7.3, 7.4, 8.0, 8.1, 8.2, or 8.3, and can scale seamlessly across your cloud resources.
PHP with Apache on RHEL 8 from Zend by Perforce provides a turnkey solution for running PHP in the cloud. This supported PHP runtime includes the option to install any of PHP 7.2, 7.3, 7.4, 8.0, 8.1, 8.2, or 8.3, and can scale seamlessly across your cloud resources.
Intuz LAMP greatly simplifies the development and deployment of PHP applications. It includes ready-to-run versions of Apache, MySQL, PHP and phpMyAdmin and all of the other software required to run each of those components.
Be the first to review this product. We've partnered with PeerSpot to gather customer feedback. You can share your experience by writing or recording a review, or scheduling a call with a PeerSpot analyst.