module-nginx/tests/vhost.pp

17 lines
338 B
ObjectPascal
Raw Normal View History

include nginx
2011-05-25 04:20:48 +02:00
2011-06-07 00:38:40 +02:00
nginx::resource::vhost { 'test.local':
ensure => present,
2013-05-08 14:15:42 +02:00
ipv6_enable => true,
2011-06-07 00:38:40 +02:00
proxy => 'http://proxypass',
}
nginx::resource::vhost { 'test.local:8080':
2013-05-08 14:15:42 +02:00
ensure => present,
listen_port => 8080,
server_name => 'test.local',
2013-05-08 14:15:42 +02:00
ipv6_enable => true,
proxy => 'http://proxypass',
}