geerlingguy / ansible-role-drupal

Ansible Role - Drupal
https://galaxy.ansible.com/geerlingguy/drupal/
MIT License
92 stars 51 forks source link

Make sure Travis CI tests for actual Drupal rendered page #27

Closed geerlingguy closed 7 years ago

geerlingguy commented 7 years ago

Currently the debian8 and ubuntu1604 builds are showing the following:

$ docker exec --tty "$(cat ${container_id})" env TERM=xterm curl http://drupaltest.dev/
<?php
/**
 * @file
 * The PHP page that serves all page requests on a Drupal installation.

And the centos7 build shows:

$ docker exec --tty "$(cat ${container_id})" env TERM=xterm curl http://drupaltest.dev/
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>503 Service Unavailable</title>
</head><body>
<h1>Service Unavailable</h1>
<p>The server is temporarily unable to service your
request due to maintenance downtime or capacity
problems. Please try again later.</p>
</body></html>

I'm guessing I need to adjust things so a later version of Apache is installed.