fuel-library/deployment/puppet/osnailyfacter/modular/apache/apache_post.rb
Dmitry Ilyin 4b1a790959 Enable keystone wsgi support
* New task to deploy Apache and configure MPM
* Run keystone as Apache vhost
* Pull wsgi threads and priority configuration from upstream
  change-id: Ib05ac81381e169845b44b2ef7cb810a4d5db17de
* Pull custom file source for wsgi scripts from upstream
  change-id: I941bf8804982e9081812e076f7a736f413220047
* Fix for keystone spec tests (use concat 1.2.1 in fixtures)
* Use keystone.py wsgi script from packages instead of downloading
  it from puppet module. Requires deb package with this patch:
  https://review.fuel-infra.org/6251
  Until it's megred, we'll use upstream wsgi script for Debian

Change-Id: I85008079b0e922a4518c696a097238500132fa04
Closes-Bug: 1313662
2015-05-12 18:05:59 +03:00

11 lines
297 B
Ruby

require File.join File.dirname(__FILE__), '../test_common.rb'
class ApachePostTest < Test::Unit::TestCase
def test_apache_80_on_public
ip = TestCommon::Settings.public_address
assert TestCommon::Network.connection?(ip, 80), 'Cannot connect to apache on the public address!'
end
end