Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions templates/aws-refarch-wordpress-04-web.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -438,9 +438,9 @@ Resources:
!Join [
"",[
"#!/bin/bash -xe\n",
"amazon-linux-extras enable php8.0",
"yum clean metadata",
"yum install php",
"amazon-linux-extras enable php8.0\n",
"yum clean metadata\n",
"yum -y install php\n",
"if [ ! -f /etc/httpd/conf.d/", !Ref WPDirectory, ".conf ]; then\n",
" touch /etc/httpd/conf.d/", !Ref WPDirectory, ".conf\n",
" echo 'ServerName 127.0.0.1:80' >> /etc/httpd/conf.d/", !Ref WPDirectory, ".conf\n",
Expand Down