iis
This commit is contained in:
parent
5199f9d18c
commit
aee4c1e825
230
modules/iis/manifests/iis.pp
Normal file
230
modules/iis/manifests/iis.pp
Normal file
@ -0,0 +1,230 @@
|
||||
####
|
||||
# Class: intapp iis
|
||||
# Description: Installing IIS Windows Feature and all other necessary features and create Default Web Site
|
||||
# Customer: Freshfields Bruckhaus Deringer
|
||||
# Author: WM Promus
|
||||
# Date: April 2018
|
||||
###
|
||||
|
||||
class iis::iis (
|
||||
|
||||
) {
|
||||
|
||||
include chocolatey
|
||||
|
||||
dsc_windowsfeature { 'IIS':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'Web-Server',
|
||||
#require => Package['powershell'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'IIS7 - Mgmt Scripts':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'Web-Scripting-Tools',
|
||||
require => Dsc_windowsfeature['IIS'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'IIS7 - Mgmt Service':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'Web-Mgmt-Service',
|
||||
require => Dsc_windowsfeature['IIS'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'MSMQ':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'MSMQ',
|
||||
require => Dsc_windowsfeature['IIS'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'NET Framework 4.5':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'Web-Asp-Net45',
|
||||
require => Dsc_windowsfeature['IIS'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'NET Framework 4.5 Web Services':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'NET-WCF-Services45',
|
||||
require => Dsc_windowsfeature['NET Framework 4.5'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'NET Framework 4.5 Web Services - ASP':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'Web-ASP',
|
||||
require => Dsc_windowsfeature['NET Framework 4.5 Web Services'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'NET Framework 4.5 Web Services - ASP .NET 3.5':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'Web-Asp-Net',
|
||||
require => Dsc_windowsfeature['NET Framework 4.5 Web Services'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'Web-Windows-Auth':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'Web-Windows-Auth',
|
||||
require => Dsc_windowsfeature['IIS'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'IIS Management - Console':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'Web-Mgmt-Console',
|
||||
require => Dsc_windowsfeature['IIS'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'NET Framework 3.5':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'NET-Framework-Features',
|
||||
require => Dsc_windowsfeature['IIS'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'NET Framework 3.5 - Core':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'NET-Framework-Core',
|
||||
require => Dsc_windowsfeature['NET Framework 3.5'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'NET Framework 3.5 - HTTP Activation':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'NET-HTTP-Activation',
|
||||
require => Dsc_windowsfeature['NET Framework 3.5 - Core'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
#############################################################################
|
||||
dsc_windowsfeature { '.NET Framework 4.5':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'AS-NET-Framework',
|
||||
#require => Package['powershell'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'Web Server (IIS) Support':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'AS-Web-Support',
|
||||
#require => Package['powershell'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'HTTP Activation':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'AS-HTTP-Activation',
|
||||
require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'Storage Services':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'Storage-Services',
|
||||
require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { '.NET Framework 4.5 Core':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'NET-Framework-45-Core',
|
||||
require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'ASP .NET 4.5':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'NET-Framework-45-ASPNET',
|
||||
require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
#dsc_windowsfeature { 'NET WCF HTTP Activation':
|
||||
# dsc_ensure => 'present',
|
||||
# dsc_name => 'NET-WCF-HTTP-Activation',
|
||||
# require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
# notify => Reboot['reboot_iis'],
|
||||
#}
|
||||
|
||||
#dsc_windowsfeature { 'TCP Port Sharing':
|
||||
# dsc_ensure => 'present',
|
||||
# dsc_name => 'NET-WCF-TCP-PortSharing',
|
||||
# require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
# notify => Reboot['reboot_iis'],
|
||||
#}
|
||||
|
||||
dsc_windowsfeature { 'Ink and Handwriting Services':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'InkAndHandwritingServices',
|
||||
require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'Media Foundation':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'Server-Media-Foundation',
|
||||
require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'SMB 1.0/CIFS File Sharing Support':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'FS-SMB1',
|
||||
require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'Telnet Client':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'Telnet-Client',
|
||||
require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'User Interfaces and Infrastructure':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'User-Interfaces-Infra',
|
||||
require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'Windows Powershell ISE':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'PowerShell-ISE',
|
||||
require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'Process Model':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'WAS-Process-Model',
|
||||
require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'Configuration APIs':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'WAS-Config-APIs',
|
||||
require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'WoW64 Support':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'WoW64-Support',
|
||||
require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
reboot { 'reboot_iis':
|
||||
when => refreshed,
|
||||
timeout => 15,
|
||||
}
|
||||
|
||||
}
|
134
modules/iis/manifests/iis_prereqs.pp
Normal file
134
modules/iis/manifests/iis_prereqs.pp
Normal file
@ -0,0 +1,134 @@
|
||||
####
|
||||
# Class: intapp iis iis_prereqs
|
||||
# Description: Installing IIS Windows Feature and all other necessary features
|
||||
# Customer: Freshfields Bruckhaus Deringer
|
||||
# Author: WM Promus
|
||||
# Date: April 2018
|
||||
###
|
||||
|
||||
class iis::iis_prereqs (
|
||||
) {
|
||||
|
||||
include chocolatey
|
||||
include iis::iis
|
||||
|
||||
dsc_windowsfeature { '.NET Framework 4.5':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'AS-NET-Framework',
|
||||
#require => Package['powershell'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'Web Server (IIS) Support':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'AS-Web-Support',
|
||||
#require => Package['powershell'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'HTTP Activation':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'AS-HTTP-Activation',
|
||||
require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'Storage Services':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'Storage-Services',
|
||||
require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { '.NET Framework 4.5 Core':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'NET-Framework-45-Core',
|
||||
require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'ASP .NET 4.5':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'NET-Framework-45-ASPNET',
|
||||
require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
#dsc_windowsfeature { 'NET WCF HTTP Activation':
|
||||
# dsc_ensure => 'present',
|
||||
# dsc_name => 'NET-WCF-HTTP-Activation',
|
||||
# require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
# notify => Reboot['reboot_iis'],
|
||||
#}
|
||||
|
||||
#dsc_windowsfeature { 'TCP Port Sharing':
|
||||
# dsc_ensure => 'present',
|
||||
# dsc_name => 'NET-WCF-TCP-PortSharing',
|
||||
# require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
# notify => Reboot['reboot_iis'],
|
||||
#}
|
||||
|
||||
dsc_windowsfeature { 'Ink and Handwriting Services':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'InkAndHandwritingServices',
|
||||
require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'Media Foundation':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'Server-Media-Foundation',
|
||||
require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'SMB 1.0/CIFS File Sharing Support':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'FS-SMB1',
|
||||
require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'Telnet Client':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'Telnet-Client',
|
||||
require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'User Interfaces and Infrastructure':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'User-Interfaces-Infra',
|
||||
require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'Windows Powershell ISE':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'PowerShell-ISE',
|
||||
require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'Process Model':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'WAS-Process-Model',
|
||||
require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'Configuration APIs':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'WAS-Config-APIs',
|
||||
require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
dsc_windowsfeature { 'WoW64 Support':
|
||||
dsc_ensure => 'present',
|
||||
dsc_name => 'WoW64-Support',
|
||||
require => Dsc_windowsfeature['Web Server (IIS) Support'],
|
||||
notify => Reboot['reboot_iis'],
|
||||
}
|
||||
|
||||
}
|
132
modules/iis/manifests/init.pp
Normal file
132
modules/iis/manifests/init.pp
Normal file
@ -0,0 +1,132 @@
|
||||
####
|
||||
# Class: intapp open webapp openweb
|
||||
# Description:
|
||||
# Customer: Freshfields Bruckhaus Deringer
|
||||
# Author: WM Promus
|
||||
# Date: April 2018
|
||||
###
|
||||
|
||||
define iis (
|
||||
String[1] $app_pool_name = 'TestAppPool',
|
||||
String[1] $service_account_password = undef,
|
||||
String[1] $service_account_username = undef,
|
||||
String[1] $iis_site_name = 'TestIisSite',
|
||||
String[1] $iis_webapp_name = 'TestWebSite',
|
||||
String[1] $path = 'C:\\inetpub\\wwwroot\\Test',
|
||||
String[1] $logpath = 'C:\\inetpub\\logs\\Test',
|
||||
|
||||
|
||||
) {
|
||||
|
||||
include iis::iis
|
||||
|
||||
############################################################################
|
||||
# Create application pool and applicationpool #
|
||||
############################################################################
|
||||
|
||||
iis_application_pool { $app_pool_name:
|
||||
ensure => 'present',
|
||||
auto_start => 'true',
|
||||
cpu_action => 'NoAction',
|
||||
cpu_reset_interval => '00:05:00',
|
||||
cpu_smp_affinitized => 'false',
|
||||
cpu_smp_processor_affinity_mask => '4294967295',
|
||||
cpu_smp_processor_affinity_mask2 => '4294967295',
|
||||
disallow_overlapping_rotation => 'false',
|
||||
disallow_rotation_on_config_change => 'false',
|
||||
enable32_bit_app_on_win64 => 'false',
|
||||
enable_configuration_override => 'true',
|
||||
identity_type => 'SpecificUser',
|
||||
idle_timeout => '00:00:00',
|
||||
idle_timeout_action => 'Terminate',
|
||||
load_balancer_capabilities => 'HttpLevel',
|
||||
load_user_profile => 'false',
|
||||
log_event_on_process_model => 'IdleTimeout',
|
||||
log_event_on_recycle => 'Time,Memory,OnDemand,PrivateMemory',
|
||||
logon_type => 'LogonBatch',
|
||||
managed_pipeline_mode => 'Integrated',
|
||||
managed_runtime_version => 'v4.0',
|
||||
manual_group_membership => 'false',
|
||||
max_processes => '1',
|
||||
orphan_worker_process => 'false',
|
||||
pass_anonymous_token => 'true',
|
||||
password => $service_account_password,
|
||||
ping_interval => '00:00:30',
|
||||
ping_response_time => '00:01:30',
|
||||
pinging_enabled => 'true',
|
||||
queue_length => '1000',
|
||||
rapid_fail_protection => 'true',
|
||||
rapid_fail_protection_interval => '00:05:00',
|
||||
rapid_fail_protection_max_crashes => '5',
|
||||
set_profile_environment => 'true',
|
||||
shutdown_time_limit => '00:01:30',
|
||||
start_mode => 'AlwaysRunning',
|
||||
startup_time_limit => '00:01:30',
|
||||
state => 'started',
|
||||
user_name => $service_account_username,
|
||||
require => Class['iis::iis'],
|
||||
}
|
||||
############################################################################
|
||||
# Create IIS sites #
|
||||
############################################################################
|
||||
|
||||
if !defined(Iis_site[$iis_site_name]) {
|
||||
iis_site { $iis_site_name:
|
||||
ensure => 'started',
|
||||
applicationpool => $app_pool_name,
|
||||
authenticationinfo => {
|
||||
'basic' => false,
|
||||
'anonymous' => true,
|
||||
'windows' => true,
|
||||
'iisClientCertificateMapping' => false,
|
||||
'digest' => false,
|
||||
'clientCertificateMapping' => false
|
||||
},
|
||||
bindings => '443',
|
||||
enabledprotocols => 'https',
|
||||
limits => {
|
||||
'maxconnections' => 4294967295,
|
||||
'connectiontimeout' => 120,
|
||||
'maxbandwidth' => 4294967295
|
||||
},
|
||||
logflags => ['ClientIP', 'Date', 'HttpStatus', 'HttpSubStatus', 'Method', 'Referer', 'ServerIP', 'ServerPort', 'Time', 'TimeTaken', 'UriQuery', 'UriStem', 'UserAgent', 'UserName', 'Win32Status'],
|
||||
logformat => 'W3C',
|
||||
loglocaltimerollover => 'false',
|
||||
logpath => $logpath,
|
||||
logperiod => 'Daily',
|
||||
physicalpath => $path,
|
||||
preloadenabled => 'false',
|
||||
}
|
||||
}
|
||||
|
||||
exec { "Start iis_site ${iis_site_name}":
|
||||
command => "Start-Website ${iis_site_name}",
|
||||
provider => 'powershell',
|
||||
onlyif => "Import-Module WebAdministration;if((Get-ChildItem IIS:\\Sites | where {\$_.Name -eq \'${iis_site_name}\'} | select -ExpandProperty State) -ne \'Started\') {exit 0} else {exit 1}",
|
||||
}
|
||||
|
||||
############################################################################
|
||||
# Create application #
|
||||
############################################################################
|
||||
|
||||
file { "${path}\\Website\\index.html":
|
||||
ensure => file,
|
||||
content => template('iis/index.html.erb'),
|
||||
}
|
||||
|
||||
iis_application { "${iis_site_name}\\${iis_webapp_name}":
|
||||
ensure => 'present',
|
||||
applicationpool => $app_pool_name,
|
||||
authenticationinfo => {
|
||||
'iisClientCertificateMapping' => false,
|
||||
'clientCertificateMapping' => false,
|
||||
'anonymous' => true,
|
||||
'basic' => false,
|
||||
'windows' => true
|
||||
},
|
||||
enabledprotocols => 'http',
|
||||
physicalpath => "${path}\\WebSite",
|
||||
sitename => $iis_site_name,
|
||||
}
|
||||
|
||||
}
|
11
modules/iis/templates/index.html.erb
Normal file
11
modules/iis/templates/index.html.erb
Normal file
@ -0,0 +1,11 @@
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>
|
||||
Hello World!
|
||||
</TITLE>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
<H1>Hell World!</H1>
|
||||
<P>This is very minimal "hello world" HTML document.</P>
|
||||
</BODY>
|
||||
</HTML>
|
Loading…
Reference in New Issue
Block a user